mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-23 11:18:25 +00:00
16 lines
253 B
C
16 lines
253 B
C
#ifndef __RARCHDB_PARSER_H
|
|
#define __RARCHDB_PARSER_H
|
|
|
|
#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);
|
|
|
|
#endif
|