summaryrefslogtreecommitdiff
path: root/fmt_uint0.c
blob: 81705f640b5c1a79cb66b670ff46592e1906567d (plain)
1
2
3
4
5
6
7
8
9
10
#include "fmt.h"

unsigned int fmt_uint0(s,u,n) char *s; unsigned int u; unsigned int n;
{
  unsigned int len;
  len = fmt_uint(FMT_LEN,u);
  while (len < n) { if (s) *s++ = '0'; ++len; }
  if (s) fmt_uint(s,u);
  return len;
}