#ifndef _FMTMATCH_H_ #define _FMTMATCH_H_ #define FMTMATCH_ALLOW_EXTRA 0x01 #define FMTMATCH_ERROR_PRINT 0x02 #define FMTMATCH_ERROR_RETURN_DEFAULT 0x04 #define FMTMATCH_ERROR_RETURN_NULL 0x08 #define FMTMATCH_ERROR_RETURN_ERROR 0x10 __BEGIN_DECLS const char * fmtmatch(const char *, const char *, int) __attribute__((__format_arg__(1))); __END_DECLS #endif /* _FMTMATCH_H_ */