logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

lconv - numeric formatting information

Description

       Contains  members  related  to the formatting of numeric values.  In the "C" locale, its members have the
       values shown in the comments above.

History

       POSIX.1-2001.

Library

       Standard C library (libc)

Name

       lconv - numeric formatting information

See Also

setlocale(3), localeconv(3), charsets(7), locale(7)

Linux man-pages 6.9.1                              2024-05-02                                       lconv(3type)

Standards

       C11, POSIX.1-2008.

Synopsis

#include<locale.h>structlconv{                /* Values in the "C" locale: */
           char*decimal_point;      /* "." */
           char*thousands_sep;      /* "" */
           char*grouping;           /* "" */
           char*mon_decimal_point;  /* "" */
           char*mon_thousands_sep;  /* "" */
           char*mon_grouping;       /* "" */
           char*positive_sign;      /* "" */
           char*negative_sign;      /* "" */
           char*currency_symbol;    /* "" */
           charfrac_digits;        /* CHAR_MAX */
           charp_cs_precedes;      /* CHAR_MAX */
           charn_cs_precedes;      /* CHAR_MAX */
           charp_sep_by_space;     /* CHAR_MAX */
           charn_sep_by_space;     /* CHAR_MAX */
           charp_sign_posn;        /* CHAR_MAX */
           charn_sign_posn;        /* CHAR_MAX */
           char*int_curr_symbol;    /* "" */
           charint_frac_digits;    /* CHAR_MAX */
           charint_p_cs_precedes;  /* CHAR_MAX */
           charint_n_cs_precedes;  /* CHAR_MAX */
           charint_p_sep_by_space; /* CHAR_MAX */
           charint_n_sep_by_space; /* CHAR_MAX */
           charint_p_sign_posn;    /* CHAR_MAX */
           charint_n_sign_posn;    /* CHAR_MAX */
       };

See Also