00001 /* The 15-410 kernel project 00002 * 00003 * loader.h 00004 * 00005 * Structure definitions, #defines, and function prototypes 00006 * for the user process loader. 00007 */ 00008 00009 #ifndef _LOADER_H 00010 #define _LOADER_H 00011 00012 /* --- Prototypes --- */ 00013 00014 int getbytes( const char *filename, int offset, int size, char *buf ); 00015 00016 /* 00017 * Declare your loader prototypes here. 00018 */ 00019 00020 #endif /* _LOADER_H */