diff options
author | obrien <obrien@FreeBSD.org> | 2012-04-13 23:30:38 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2012-04-13 23:30:38 +0000 |
commit | 15f98df7891f1853090ecb6c4a9cc734e671ef6b (patch) | |
tree | 76d27a13085cbcecae404c91dc1a6e03fc5c5d7b /file.h | |
parent | 75c49f9dd6a0ff710f7c791a485899c7a07af444 (diff) | |
download | FreeBSD-src-15f98df7891f1853090ecb6c4a9cc734e671ef6b.zip FreeBSD-src-15f98df7891f1853090ecb6c4a9cc734e671ef6b.tar.gz |
Virgin import of Christos Zoulas's FILE 5.11.
Diffstat (limited to 'file.h')
-rw-r--r-- | file.h | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -27,7 +27,7 @@ */ /* * file.h - definitions for file(1) program - * @(#)$File: file.h,v 1.134 2011/09/16 21:23:59 christos Exp $ + * @(#)$File: file.h,v 1.135 2011/09/20 15:30:14 christos Exp $ */ #ifndef __file_h__ @@ -405,15 +405,16 @@ protected int file_trycdf(struct magic_set *, int, const unsigned char *, protected int file_zmagic(struct magic_set *, int, const char *, const unsigned char *, size_t); #endif -protected int file_ascmagic(struct magic_set *, const unsigned char *, size_t); +protected int file_ascmagic(struct magic_set *, const unsigned char *, size_t, + int); protected int file_ascmagic_with_encoding(struct magic_set *, const unsigned char *, size_t, unichar *, size_t, const char *, - const char *); + const char *, int); protected int file_encoding(struct magic_set *, const unsigned char *, size_t, unichar **, size_t *, const char **, const char **, const char **); protected int file_is_tar(struct magic_set *, const unsigned char *, size_t); protected int file_softmagic(struct magic_set *, const unsigned char *, size_t, - int); + int, int); protected struct mlist *file_apprentice(struct magic_set *, const char *, int); protected uint64_t file_signextend(struct magic_set *, struct magic *, uint64_t); |