nightmaremail

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

fmt_uint.c (118B)


      1 #include "fmt.h"
      2 
      3 unsigned int fmt_uint(char *s, unsigned int u)
      4 {
      5   unsigned long l; l = u; return fmt_ulong(s,l);
      6 }