mirror of
https://github.com/komiko44240BB/BattleBay_tool_v1.0.git
synced 2026-01-18 16:27:29 +01:00
7 lines
131 B
C
7 lines
131 B
C
#include "clear_input.h"
|
|
#include<stdio.h>
|
|
|
|
void clearInputBuffer() {
|
|
int c;
|
|
while ((c = getchar()) != '\n' && c != EOF);
|
|
} |