d06 change test output

This commit is contained in:
Hugo LAMY
2022-03-17 14:27:32 +01:00
parent 4327b90c02
commit a7386b882e
4 changed files with 19 additions and 2 deletions

View File

@@ -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,