home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / zip / mint / mntlib16.lzh / MNTLIB16 / LIB.H < prev    next >
C/C++ Source or Header  |  1993-08-03  |  830b  |  27 lines

  1. /*
  2.  * library-specific stuff
  3.  */
  4.  
  5. #ifndef _COMPILER_H
  6. #include <compiler.h>
  7. #endif
  8.  
  9. #ifndef _STDIO_H
  10. #include <stdio.h>    /* for FILE */
  11. #endif
  12.  
  13. __EXTERN int    _unx2dos __PROTO((const char *, char *));
  14. __EXTERN int    _dos2unx __PROTO((const char *, char *));
  15. __EXTERN long    _write      __PROTO((int, const void *, long));
  16. __EXTERN long    _read      __PROTO((int, void *, long));
  17. __EXTERN int    _console_read_byte __PROTO((int));
  18. __EXTERN void    _console_write_byte __PROTO((int, int));
  19. __EXTERN int    _doprnt     __PROTO((FILE *, const char *, __VA_LIST__));
  20. __EXTERN int    _scanf();    /* varargs */
  21.  
  22. __EXTERN char *    _ultoa    __PROTO((unsigned long, char *, int));
  23. __EXTERN char *    _ltoa    __PROTO((long, char *, int));
  24. __EXTERN char *    _itoa    __PROTO((int, char *, int));
  25.  
  26. __EXTERN long    _unixtime __PROTO((unsigned time, unsigned date));
  27.