wm: teppich

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