#ifndef __USER_BUILTIN_H__ # define __USER_BUILTIN_H__ #include #include // 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__*/