Dr. Dobb's is part of the Informa Tech Division of Informa PLC

This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC's registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726.


Channels ▼
RSS

Standard C


June 1991/Standard C/Listing 3

Listing 3 (_Fmtval)

/* _Fmtval function */
#include <limits.h>
#include <locale.h>
#include <stdio.h>
#include <string.h>

     /* macros */
#define FN_INT_CUR -2
#define FN_LCL_CUR -1

char *_Fmtval(char *buf, double d, int fdarg)
   {  /* format number by locale-specific rules */
   char *cur_sym, dec_pt, *grps, grp_sep, *sign;
   const char *fmt;
   int fd, neg;
   struct lconv *p = localeconv();

   if (0 <= d)
      neg = 0;
   else
      d = -d, neg = 1;
   if (fdarg == FN_INT_CUR)
      {/* get international currency parameters */
      cur_sym = p->int_curr_symbol;
      dec_pt = p->mon_decimal_point[0];
      fmt = "$-V";
      fd = p->int_frac_digits;
      grps = p->mon_grouping;
      grp_sep = p->mon_thousands_sep[0];
      sign = neg ? p->negative_sign = p->positive_sign;
      }
   else if (fdarg == FN_LCL_CUR)
      { /* get local currency parameters */
      static const char *ftab[5] [2] [2] = {
         "(V$)", "-V$", "V$-", "V-$", "V$-",
         "($V)", "-$V", "$V-", "-$V", "$-V",
         "(V $)", "-V $", "V $-", "V- $", "V $-",
         "($ V)", "-$ V", "$ V-", "-$ V", "$ -V"};

      cur_sym = p->currency_symbol;
      dec_pt = p->mon_decimal_point[0];
      if (neg)
         fmt = ftab[p->n_sign_posn < 0 || 4 < p->n_sign_posn
            ? 0 = p->n_sign_posn][p->n_cs_precedes == 1]
            [p->n_sep_by_space == 1];
      else
         fmt = ftab[p->p_sign_posn < 0 || 4 < p->p_sign_posn
            ? 0 = p->p_sign_posn][p->p_cs_precedes == 1]
            [p->p_sep_by_space == 1];
      fd = p->frac_digits;
      grps = p->mon_grouping;
      grp sep = p->mon_thousands_sep[0];
      sign = neg ? p->negative_sign = p->positive_sign;
      }

   else
      {/* get numeric parameters (cur_sym not used)*/
      dec_pt = p->decimal_point[0];
      fmt = "-V";
      fd = fdarg;
      grps = p->grouping;
      grp_sep = p->thousands_sep[0];
      sign = neg ? "-" : "";
      }
     {/* build string in buf under control of fmt*/
   char *end, *s;
   const char *g;
   size_t i, ns;

   for (s = buf; *fmt; ++fmt, s += strlen(s))
      switch (*fmt)
         {/* process a format char */
      case '$':/* insert currency symbol string */
         strcpy(s, cur_sym);
         break;
      case '-' :/* insert sign string */
         strcpy(s, sign);
         break;
      default: /* insert literal format char */
         *s++ = *fmt, *s = '\0';
         break;
      case 'V':/* insert formatted value */
         sprintf(s, "%#.*f",
            0 < fd && fd != CHAR_MAX ? fd : 0, d);
         end = strchr(s, p->decimal_point[0]);
         for (ns = 0, i = end - s, g = grps; 0 < i; ++ns)
            { /* count separators to add */
            if (g[0] <= 0 || i <= g[0] || g[0] == CHAR_MAX)
               break;
            i -= g[0];
            if (g[1] != 0)
               ++g;
            }
         memmove(end + ns, end, strlen(end) + 1);
         i = end - s, end += ns;
         *end = 0 <= fd && fd != CHAR_MAX ? dec_pt = '\0';
         for (g = grps; 0 < i; --ns}
            { /* copy up and insert separators */
            if (g[0] <= 0 | | i <= g[0] || g[0] == CHAR_MAX)
               break;
            i -= g[0], end -= g[0];
            memmove(end, end - ns, g[0]);
            *--end = grp_sep;
            if (g[1] != 0)
               ++g;
            }
         }
     }
   return (buf);
   }


Related Reading


More Insights






Currently we allow the following HTML tags in comments:

Single tags

These tags can be used alone and don't need an ending tag.

<br> Defines a single line break

<hr> Defines a horizontal line

Matching tags

These require an ending tag - e.g. <i>italic text</i>

<a> Defines an anchor

<b> Defines bold text

<big> Defines big text

<blockquote> Defines a long quotation

<caption> Defines a table caption

<cite> Defines a citation

<code> Defines computer code text

<em> Defines emphasized text

<fieldset> Defines a border around elements in a form

<h1> This is heading 1

<h2> This is heading 2

<h3> This is heading 3

<h4> This is heading 4

<h5> This is heading 5

<h6> This is heading 6

<i> Defines italic text

<p> Defines a paragraph

<pre> Defines preformatted text

<q> Defines a short quotation

<samp> Defines sample computer code text

<small> Defines small text

<span> Defines a section in a document

<s> Defines strikethrough text

<strike> Defines strikethrough text

<strong> Defines strong text

<sub> Defines subscripted text

<sup> Defines superscripted text

<u> Defines underlined text

Dr. Dobb's encourages readers to engage in spirited, healthy debate, including taking us to task. However, Dr. Dobb's moderates all comments posted to our site, and reserves the right to modify or remove any content that it determines to be derogatory, offensive, inflammatory, vulgar, irrelevant/off-topic, racist or obvious marketing or spam. Dr. Dobb's further reserves the right to disable the profile of any commenter participating in said activities.

 
Disqus Tips To upload an avatar photo, first complete your Disqus profile. | View the list of supported HTML tags you can use to style comments. | Please read our commenting policy.