File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / expat / xmlwf / filemap.h
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:00:54 2012 UTC (12 years, 7 months ago) by misho
Branches: expat, MAIN
CVS tags: v2_1_0, v2_0_1p0, v2_0_1, HEAD
expat

    1: /* Copyright (c) 1998, 1999 Thai Open Source Software Center Ltd
    2:    See the file COPYING for copying permission.
    3: */
    4: 
    5: #include <stddef.h>
    6: 
    7: #ifdef XML_UNICODE
    8: int filemap(const wchar_t *name,
    9:             void (*processor)(const void *, size_t,
   10:                               const wchar_t *, void *arg),
   11:             void *arg);
   12: #else
   13: int filemap(const char *name,
   14:             void (*processor)(const void *, size_t,
   15:                               const char *, void *arg),
   16:             void *arg);
   17: #endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>