mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-01-12 13:51:27 +00:00
11 lines
190 B
C
11 lines
190 B
C
#ifdef _WIN32
|
|
#include <io.h>
|
|
#else
|
|
#include <unistd.h>
|
|
#endif
|
|
|
|
#define MAX_TOKEN_LEN 255
|
|
|
|
ssize_t get_token(int fd, char* token, size_t max_len);
|
|
int find_token(int fd, const char* token);
|