| 1069 | ****************************************************************************/ |
| 1070 | |
| 1071 | static void incr_level(void) |
| 1072 | { |
| 1073 | int ndx = g_level; |
| 1074 | |
| 1075 | if (ndx >= MAX_LEVELS) |
| 1076 | { |
| 1077 | error("Nesting level is too deep, aborting\n"); |
| 1078 | exit(ERROR_NESTING_TOO_DEEP); |
| 1079 | } |
| 1080 | |
| 1081 | g_paranum[ndx] = 1; |
| 1082 | g_level = ndx + 1; |
| 1083 | } |
| 1084 | |
| 1085 | /**************************************************************************** |
| 1086 | * Name: decr_level |
no test coverage detected