diff options
author | 2023-05-23 18:31:53 +0600 | |
---|---|---|
committer | 2023-05-23 18:31:53 +0600 | |
commit | 09133381cad0a1dec37595867eadf9c6858ce8ee (patch) | |
tree | a7755e42183c08729e07e2dd2f5ff8054511bd6e /src/main.c | |
parent | 413e443613499a53cc4aa1f35664c289ffbde04b (diff) | |
download | c-obp-example-09133381cad0a1dec37595867eadf9c6858ce8ee.tar.gz c-obp-example-09133381cad0a1dec37595867eadf9c6858ce8ee.zip |
Clean up main header file
Signed-off-by: Mubashshir <ahmubashshir@gmail.com>
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -3,6 +3,7 @@ #include <stdlib.h> #include "teams.h" + #define getline(x, y) \ while(((x)[strcspn((x), "\r\n")] = 0) == 0 && strncmp((x), "", (y)) == 0) \ fgets((x), (y), stdin) |