mirror of
https://github.com/sigmasternchen/libargo
synced 2025-03-15 05:08:54 +00:00
19 lines
216 B
C
19 lines
216 B
C
#ifndef DEMO_H
|
|
#define DEMO_H
|
|
|
|
|
|
typedef struct {
|
|
long long uid;
|
|
char* username;
|
|
char** aliases;
|
|
char* email;
|
|
} user_t;
|
|
|
|
typedef struct {
|
|
char* name;
|
|
char* content;
|
|
long* views;
|
|
user_t user;
|
|
} post_t;
|
|
|
|
#endif
|