FACT++  1.0
string format_integer ( unsigned long  value)

Definition at line 37 of file corruptFileFixer.cc.

References str.

Referenced by main().

38  {
39  ostringstream str;
40  str << " ";
41  if (value < 10000000000) str << " ";
42  if (value < 1000000000) str << " ";
43  if (value < 100000000) str << " ";
44  if (value < 10000000) str << " ";
45  if (value < 1000000) str << " ";
46  if (value < 100000) str << " ";
47  if (value < 10000) str << " ";
48  if (value < 1000) str << " ";
49  if (value < 100) str << " ";
50  if (value < 10) str << " ";
51  str << value << " ";
52  return str.str();
53  }
char str[80]
Definition: test_client.c:7

+ Here is the caller graph for this function: