Skip to content

Commit

Permalink
Use protobufs
Browse files Browse the repository at this point in the history
  • Loading branch information
aljen committed Oct 11, 2024
1 parent 58fd46c commit a723fd0
Show file tree
Hide file tree
Showing 32 changed files with 2,637 additions and 1,044 deletions.
Binary file added 1
Binary file not shown.
10 changes: 10 additions & 0 deletions 1.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#include <stdio.h>
#include <stdint.h>

static uint64_t get_next_id(void)
{
static uint64_t id = 0;
return ++id;
}

int main() { printf("%d\n", get_next_id()); }
Loading

0 comments on commit a723fd0

Please sign in to comment.