mirror of
https://github.com/sigmasternchen/libargo
synced 2025-03-15 21:28:54 +00:00
19 lines
223 B
C
19 lines
223 B
C
![]() |
#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
|