wm: teppich

ref: 0406ab471ab3c21903bd6c331cb75426b9e7fb1c
dir: /include/user.h/

View raw version
typedef struct
{
	uint8 id;
	char *name;
	char *pass;
}user_t;

static user_t cuser;

static user_t adam =
{
	.id = 1,
	.name = "adam",
	.pass = "",
};