関数ポインタと関数ポインタ配列

よくわすれるのでメモ

void (*func)(char*) = func00;
void (*func_table[TABLE_MAX])(char*) = {
 func00,
 func01,
 func02,
};