diff options
| author | Sadeep Madurange <smadurange@users.noreply.github.com> | 2021-11-23 23:23:55 +0800 |
|---|---|---|
| committer | Sadeep Madurange <smadurange@users.noreply.github.com> | 2021-11-23 23:23:55 +0800 |
| commit | acae19a3f4d4b52dd8b25edd8571d28ab18035ad (patch) | |
| tree | 7368d5b3ef0c59b28907fc4748ffbe4654c36efa | |
| parent | 512d174fd756ca48998a88c949208a5960f7b9ed (diff) | |
| download | k&r-exercises-acae19a3f4d4b52dd8b25edd8571d28ab18035ad.tar.gz | |
1.24
| -rw-r--r-- | 1/24.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,10 +1,10 @@ #include <stdio.h> -#define MAXLEN 1000 -#define TRUE 1 #define FALSE 0 +#define TRUE 1 #define INLINE 2 #define MULTILINE 3 +#define MAXLEN 1000 /* checks c program for unbalanced parentheses, brackets and braces */ int main(int argc, char *argv[]) { |
