File: itoa.h

package info (click to toggle)
nullmailer 1.00RC7-22
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,192 kB
  • ctags: 695
  • sloc: cpp: 4,375; sh: 519; makefile: 249; perl: 184; ansic: 10
file content (11 lines) | stat: -rw-r--r-- 191 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
#ifndef ITOA__H__
#define ITOA__H__

#ifndef INTLENGTH
#define INTLENGTH 64
/* 40 digits is long enough to handle unsigned 128-bit numbers */
#endif

const char *itoa(long, int = 0);

#endif