diff options
author | sinanmohd <sinan@firemail.cc> | 2023-05-13 14:52:00 +0530 |
---|---|---|
committer | sinanmohd <sinan@firemail.cc> | 2023-05-13 22:06:17 +0530 |
commit | 563cea897121b33cc5e98dc6ed3a36eb39d52766 (patch) | |
tree | 8da51d24daf9796c3d5351f13a068fc03fe997aa /7.5/op.h | |
parent | e0b9da43b6311aa4413d030b27c6cdab000aeafd (diff) |
7.5: initial commit, 4.10 with scanf instead of getchar
Diffstat (limited to '7.5/op.h')
-rw-r--r-- | 7.5/op.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/7.5/op.h b/7.5/op.h new file mode 100644 index 0000000..bfe24b5 --- /dev/null +++ b/7.5/op.h @@ -0,0 +1,10 @@ +#include <stddef.h> + +#ifndef OP_H + +#define NUM '0' + +#define OP_H +#endif + +char getop(char *op, size_t len); |