all repos — xrxs @ c8ba412121282b7e4d51126b5da615d75b7faf1a

experimental networked application/game server with 9p

cart.h (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
typedef struct UserInfo UserInfo;
typedef unsigned int uint;

typedef struct Cart {
  char name[32];
  char* rom;
  char* txt_data;
  char* sprite_data;
  char* audio_data;
} Cart;

Cart* create_cart(char* name);
Cart* find_cart(UserInfo* table, char* name);
uint count_carts(UserInfo* table, char* name);
void destroy_cart(Cart* self);