Skip to content

Instantly share code, notes, and snippets.

View Irdroid's full-sized avatar
🎯
Focusing

Hardware Group LTD Irdroid

🎯
Focusing
View GitHub Profile
@Irdroid
Irdroid / example.c
Created November 9, 2022 05:52 — forked from waveacme/example.c
linux list.h for userspace
#include <stdlib.h>
#include <stdio.h>
#include "list.h"
typedef struct episode {
int epid;
struct list_head list;
} episode_t;