initial load of upstream version 1.06.32
[xmlrpc-c] / lib / expat / xmlwf / filemap.h
1 /*
2 Copyright (c) 1998, 1999 Thai Open Source Software Center Ltd
3 See the file copying.txt for copying permission.
4 */
5
6
7 #include <stddef.h>
8
9 #ifdef XML_UNICODE
10 int filemap(const wchar_t *name,
11             void (*processor)(const void *, size_t, const wchar_t *, void *arg),
12             void *arg);
13 #else
14 int filemap(const char *name,
15             void (*processor)(const void *, size_t, const char *, void *arg),
16             void *arg);
17 #endif