summary refs log tree commit diff
path: root/src/fmt_uint0.c
blob: 728a5aa87425491138be837f282870cc7b9ebef7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
/* Public domain. */

#include "fmt.h"

unsigned int fmt_uint0(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;
}