d06 change test output
This commit is contained in:
@@ -2,6 +2,12 @@
|
||||
#include <string>
|
||||
#include "convert.h"
|
||||
|
||||
// f[] : is an array
|
||||
// *f[] : is an array of pointers
|
||||
// (*f[])() : is an array of pointers to functions with no parameters
|
||||
// (*f[])(str) : is an array of pointers to functions with parameter str
|
||||
// see :
|
||||
// https://stackoverflow.com/questions/31643245/declaring-an-array-of-functions-of-type-void-c
|
||||
bool (*checkFunc[])(std::string str) =
|
||||
{
|
||||
checkChar,
|
||||
|
||||
Reference in New Issue
Block a user