home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 2 / RISC_DISC_2.iso / pd_share / utilities / cli / pgp2 / src / h / language < prev    next >
Encoding:
Text File  |  1994-07-15  |  628 b   |  22 lines

  1. /*
  2.  *    language.h
  3.  *    Include file for PGP foreign language translation facility
  4.  */
  5.  
  6. /*
  7.  * Strings with LANG() around them are found by automatic tools and put
  8.  * into the special text file to be translated into foreign languages.
  9.  * LANG () (note the space between 'G' and '(') should be used if there
  10.  * is no string to be extracted (eg. prototype).
  11.  */
  12.  
  13. extern char    *LANG (char *s);
  14.  
  15. /*
  16.  * Use the dummy macro _LANG for strings that should be extracted, but
  17.  * shouldn't be processed by the LANG function (eg. array initializers).
  18.  */
  19. #define _LANG(x)    x
  20.  
  21. extern char language[]; /* language selector prefix for string file */
  22.