Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/locale.h

    r4cf8ca6 r324d46b  
    3030 * @{
    3131 */
    32 /** @file Locale-specific definitions.
     32/** @file
    3333 */
    3434
    3535#ifndef POSIX_LOCALE_H_
    3636#define POSIX_LOCALE_H_
    37 
    38 // TODO: documentation
    3937
    4038#ifndef NULL
     
    8583
    8684struct posix_lconv {
    87         char *currency_symbol;
    88         char *decimal_point;
    89         char  frac_digits;
    90         char *grouping;
    91         char *int_curr_symbol;
    92         char  int_frac_digits;
    93         char  int_n_cs_precedes;
    94         char  int_n_sep_by_space;
    95         char  int_n_sign_posn;
    96         char  int_p_cs_precedes;
    97         char  int_p_sep_by_space;
    98         char  int_p_sign_posn;
    99         char *mon_decimal_point;
    100         char *mon_grouping;
    101         char *mon_thousands_sep;
    102         char *negative_sign;
    103         char  n_cs_precedes;
    104         char  n_sep_by_space;
    105         char  n_sign_posn;
    106         char *positive_sign;
    107         char  p_cs_precedes;
    108         char  p_sep_by_space;
    109         char  p_sign_posn;
    110         char *thousands_sep;
     85        char    *currency_symbol;
     86        char    *decimal_point;
     87        char     frac_digits;
     88        char    *grouping;
     89        char    *int_curr_symbol;
     90        char     int_frac_digits;
     91        char     int_n_cs_precedes;
     92        char     int_n_sep_by_space;
     93        char     int_n_sign_posn;
     94        char     int_p_cs_precedes;
     95        char     int_p_sep_by_space;
     96        char     int_p_sign_posn;
     97        char    *mon_decimal_point;
     98        char    *mon_grouping;
     99        char    *mon_thousands_sep;
     100        char    *negative_sign;
     101        char     n_cs_precedes;
     102        char     n_sep_by_space;
     103        char     n_sign_posn;
     104        char    *positive_sign;
     105        char     p_cs_precedes;
     106        char     p_sep_by_space;
     107        char     p_sign_posn;
     108        char    *thousands_sep;
    111109};
    112110
     
    119117extern posix_locale_t posix_newlocale(int category_mask, const char *locale,
    120118    posix_locale_t base);
    121 extern posix_locale_t posix_uselocale(posix_locale_t newloc);
     119extern posix_locale_t posix_uselocale (posix_locale_t newloc);
    122120
    123121#ifndef LIBPOSIX_INTERNAL
     
    133131#endif
    134132
     133
    135134#endif /* POSIX_LOCALE_H_ */
    136135
Note: See TracChangeset for help on using the changeset viewer.