home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / dev / lang / sgmls / src / msgcat.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-07-10  |  294 b   |  14 lines

  1.  
  2. #ifdef HAVE_CAT
  3. #include <nl_types.h>
  4. #else
  5. typedef UNIV nl_catd;
  6. #endif
  7.  
  8. /* Don't use prototypes here in case nl_types.h declares a conflicting
  9. prototype. */
  10.  
  11. nl_catd catopen(char *name, int oflag);
  12. int catclose(nl_catd catd);
  13. char *catgets(nl_catd catd, int setnum, int msgnum, char *dflt);
  14.