wm: teppich

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