libargo/marshaller/demo/demo.h

19 lines
223 B
C
Raw Normal View History

#ifndef DEMO_H
#define DEMO_H
typedef struct {
long long uid;
const char* username;
const char* email;
} user_t;
typedef struct {
const char* name;
const char* content;
long* views;
user_t user;
} post_t;
#endif