1
0
Fork 0
forked from nuttx/nuttx-update

tools; nxstyle: add exception for ascii.h definitions

The following definitions are added as exceptions
ASCII_a -> ASCII_z

Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
This commit is contained in:
Alin Jerpelea 2021-03-20 18:06:53 +01:00 committed by Xiang Xiao
parent 648beb355d
commit 122f59b761

View file

@ -234,6 +234,35 @@ static const char *g_white_list[] =
"L_tmpnam",
/* Ref: ascii.h */
"ASCII_a",
"ASCII_b",
"ASCII_c",
"ASCII_d",
"ASCII_e",
"ASCII_f",
"ASCII_g",
"ASCII_h",
"ASCII_i",
"ASCII_j",
"ASCII_k",
"ASCII_l",
"ASCII_m",
"ASCII_n",
"ASCII_o",
"ASCII_p",
"ASCII_q",
"ASCII_r",
"ASCII_s",
"ASCII_t",
"ASCII_u",
"ASCII_v",
"ASCII_w",
"ASCII_x",
"ASCII_y",
"ASCII_z",
NULL
};