home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_13_03 / allison / lconv.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-01-03  |  513 b   |  25 lines

  1. Listing 6 - The members of struct lconv
  2.  
  3. struct lconv
  4. {
  5.    char *decimal_point;
  6.    char *thousands_sep;
  7.    char *grouping;
  8.    char *int_curr_symbol;
  9.    char *currency_symbol;
  10.    char *mon_decimal_point;
  11.    char *mon_thousands_sep;
  12.    char *mon_grouping;
  13.    char *positive_sign;
  14.    char *negative_sign;
  15.    char int_frac_digits;
  16.    char frac_digits;
  17.    char p_cs_precedes;
  18.    char p_sep_by_space;
  19.    char n_cs_precedes;
  20.    char n_sep_by_space;
  21.    char p_sign_posn;
  22.    char n_sign_posn;
  23. };
  24.  
  25.