home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Linux / Divers / yagirc-0.51.tar.gz / yagirc-0.51.tar / yagirc-0.51 / os.h < prev    next >
C/C++ Source or Header  |  1998-05-02  |  271b  |  22 lines

  1. #ifndef __OS_H
  2. #define __OS_H
  3.  
  4. #define FILE_CREATE_MODE 0644
  5.  
  6. #ifndef HAS_STRUPR
  7. char *strupr(char *str);
  8. #endif
  9.  
  10. /* convert ~ to home dir */
  11. char *convhome(char *fname);
  12.  
  13. #ifdef USE_GNOME
  14. #  include <gnome.h>
  15. #else
  16. #  ifndef _
  17. #    define _(a) a
  18. #  endif
  19. #endif
  20.  
  21. #endif
  22.