Vhex-kernel/include/user/builtin.h

21 lines
310 B
C

#ifndef __USER_BUILTIN_H__
# define __USER_BUILTIN_H__
#include <stddef.h>
#include <stdint.h>
// Define builtin struct.
struct builtin_s
{
char name[10];
int (*entry)(int argc, char **argv);
};
// Builtin list
extern int builtin_proc(void);
extern int builtin_ram(void);
#endif /*__USER_BUILTIN_H__*/