summaryrefslogtreecommitdiff
path: root/xmlwf/filemap.h
diff options
context:
space:
mode:
authorfdrake <fdrake>2002-07-01 15:13:00 +0000
committerfdrake <fdrake>2002-07-01 15:13:00 +0000
commit79162e938ea084584199e65fcbc0058f17c74934 (patch)
tree899ed92a001bc9e0a80c8df1812b454dd54114f3 /xmlwf/filemap.h
parent19df3e2e8a2f60177957fa317d2551a64a98b7db (diff)
downloadlibexpat-79162e938ea084584199e65fcbc0058f17c74934.tar.gz
De-tabify; minor code-style consistency changes.
Diffstat (limited to 'xmlwf/filemap.h')
-rwxr-xr-xxmlwf/filemap.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/xmlwf/filemap.h b/xmlwf/filemap.h
index ecf0175..814edec 100755
--- a/xmlwf/filemap.h
+++ b/xmlwf/filemap.h
@@ -1,17 +1,17 @@
-/*
-Copyright (c) 1998, 1999 Thai Open Source Software Center Ltd
-See the file COPYING for copying permission.
+/* Copyright (c) 1998, 1999 Thai Open Source Software Center Ltd
+ See the file COPYING for copying permission.
*/
-
#include <stddef.h>
#ifdef XML_UNICODE
int filemap(const wchar_t *name,
- void (*processor)(const void *, size_t, const wchar_t *, void *arg),
- void *arg);
+ void (*processor)(const void *, size_t,
+ const wchar_t *, void *arg),
+ void *arg);
#else
int filemap(const char *name,
- void (*processor)(const void *, size_t, const char *, void *arg),
- void *arg);
+ void (*processor)(const void *, size_t,
+ const char *, void *arg),
+ void *arg);
#endif