]> git.openstreetmap.org Git - nominatim.git/blob - nominatim/input.h
Replace lettuce with behave in tests. Use python3 Split import and (python,php) tests...
[nominatim.git] / nominatim / input.h
1 #ifndef INPUT_H
2 #define INPUT_H
3
4 int readFile(void *context, char * buffer, int len);
5 int inputClose(void *context);
6 void *inputOpen(const char *name);
7 char inputGetChar(void *context);
8 int inputEof(void *context);
9 xmlTextReaderPtr inputUTF8(const char *name);
10
11 #endif