object.h 360 B

1234567891011121314151617
  1. #ifndef object_h
  2. #define object_h
  3. struct {
  4. unsigned int stringsize; /* size of the dumped string table */
  5. unsigned int nsyms; /* number of symbols */
  6. unsigned int nfiles; /* number of files */
  7. unsigned int nlines; /* number of lines */
  8. } nlhdr;
  9. String objname ;
  10. Integer objsize;
  11. char *stringtab;
  12. readobj(/* file */);
  13. objfree(/* */);
  14. #endif