toaruos/base/usr/include/kernel/mod/procfs.h
2018-09-30 16:09:19 +09:00

12 lines
178 B
C

#pragma once
#include <kernel/fs.h>
struct procfs_entry {
int id;
char * name;
read_type_t func;
};
extern int procfs_install(struct procfs_entry * entry);