Files
LAB16/include/shared.h
2026-02-25 18:09:22 +03:00

12 lines
463 B
C

#ifndef SHARED_H
#define SHARED_H
#define READ_EXACT(t, out) do { \
if (scanf((t), &(out)) == 1) break; \
printf("Incorrect input for " #out ", try again: "); \
while (getchar() != '\n'); \
} \
while (1) \
#endif