AFF --- A container for numbers (array) by Friederich and Forbriger.

◆ boolchar()

const char* boolchar ( const bool &  v)

return string for bool value

Examples:
tests/simplearraytest.cc.

Definition at line 69 of file simplearraytest.cc.

Referenced by main().

70 {
71  char *s;
72  if (v) { s="true"; } else { s="false"; }
73  return(s);
74 }
Here is the caller graph for this function: