home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / disk / archive / nspark_1 / nspark-1.7.5 / misc.h < prev    next >
C/C++ Source or Header  |  1993-08-20  |  970b  |  43 lines

  1. /*
  2.  * miscellaneous function prototypes
  3.  *
  4.  * $Header: misc.h 1.4 92/12/08 $
  5.  * $Log:    misc.h,v $
  6.  * Revision 1.4  92/12/08  10:20:19  duplain
  7.  * Added append_type() prototype.
  8.  * 
  9.  * Revision 1.3  92/10/07  10:57:23  duplain
  10.  * Added "#define riscos_path" for RISCOS systems.
  11.  * 
  12.  * Revision 1.2  92/09/30  10:27:19  duplain
  13.  * Added riscos_path().
  14.  * 
  15.  * Revision 1.1  92/09/29  18:02:38  duplain
  16.  * Initial revision
  17.  * 
  18.  */
  19.  
  20. #ifndef __MISC_H
  21. #define __MISC_H
  22.  
  23. #include "cproto.h"
  24.  
  25. char *basename P__((char *s));
  26. char *name_dot_arc P__((char *s));
  27. #ifndef RISCOS
  28. char *riscos_path P__((char *s));
  29. #else /* RISC OS */
  30. #define riscos_path(s) s
  31. #endif /* not RISC OS */
  32. char *uplevel P__((void));
  33. char *downlevel P__((char *filename));
  34. void print_details P__((Header *header));
  35. int inlist P__((char *filename));
  36. int append_type P__((Header *header, char *filename));
  37.  
  38. #ifdef DEBUGGING
  39. void print_header P__((Header *header));
  40. #endif /* DEBUGGING */
  41.  
  42. #endif /* __MISC_H */
  43.