diff options
| author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-14 08:56:40 +0800 |
|---|---|---|
| committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-14 08:56:40 +0800 |
| commit | a7a7bebcecbcd22da76920cd0e46c455ec8b5bc9 (patch) | |
| tree | 3eadc67c8f4dcef7d5d6602be299e55e949bd833 /rtclient/rtuser.h | |
| parent | f36fd455104fcaa083fd1ea2186e65ec0350f208 (diff) | |
Isolate headers to a directory
Prepare for header system installation
Diffstat (limited to 'rtclient/rtuser.h')
| -rw-r--r-- | rtclient/rtuser.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/rtclient/rtuser.h b/rtclient/rtuser.h new file mode 100644 index 0000000..9fccea8 --- /dev/null +++ b/rtclient/rtuser.h @@ -0,0 +1,33 @@ +#ifndef RTUSER_H +#define RTUSER_H + +#include <stdbool.h> + +struct rt_user { + char *id; + char *password; + char *name; + char *emailaddress; + char *realname; + char *nickname; + char *gecos; + char *organization; + char *address1; + char *address2; + char *city; + char *state; + char *zip; + char *country; + char *homephone; + char *workphone; + char *mobilephone; + char *pagerphone; + char *contactinfo; + char *comments; + char *signature; + char lang[2]; + bool privileged; + bool disabled; +}; + +#endif // RTUSER_H |