mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-22 21:28:10 +03:00
12 lines
269 B
C
12 lines
269 B
C
#ifndef INPUT_H
|
|
#define INPUT_H
|
|
|
|
int readFile(void *context, char * buffer, int len);
|
|
int inputClose(void *context);
|
|
void *inputOpen(const char *name);
|
|
char inputGetChar(void *context);
|
|
int inputEof(void *context);
|
|
xmlTextReaderPtr inputUTF8(const char *name);
|
|
|
|
#endif
|