wm: teppich

ref: a36b0984d8335858fcaf74f14214b2186b5b08b5
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 = "",
};