diff options
author | Tor Andersson <tor@ghostscript.com> | 2004-10-05 04:50:44 +0200 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2004-10-05 04:50:44 +0200 |
commit | 00905a4e2b959ccc3b79381acbf1d3b8e5319e8e (patch) | |
tree | e880b845138781aa72473a7be579152a5d20e4eb /include/fitz/object.h | |
parent | 970ce563601547adcaa131229bf296f5c3e2db3c (diff) | |
download | mupdf-00905a4e2b959ccc3b79381acbf1d3b8e5319e8e.tar.xz |
refactor file code. fix file writing.
Diffstat (limited to 'include/fitz/object.h')
-rw-r--r-- | include/fitz/object.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/fitz/object.h b/include/fitz/object.h index 8ccdd153..2a9ab15f 100644 --- a/include/fitz/object.h +++ b/include/fitz/object.h @@ -113,10 +113,8 @@ fz_error *fz_dictdel(fz_obj *dict, fz_obj *key); fz_error *fz_dictdels(fz_obj *dict, char *key); void fz_freedict(fz_obj *dict); -int fz_sprintobj(char *s, fz_obj *obj); -int fz_sprintcobj(char *s, fz_obj *obj); -int fz_fprintobj(FILE *f, fz_obj *obj); -int fz_fprintcobj(FILE *f, fz_obj *obj); +int fz_sprintobj(char *s, int n, fz_obj *obj, int tight); +void fz_debugobj(fz_obj *obj); fz_error *fz_parseobj(fz_obj **objp, char *s); fz_error *fz_packobj(fz_obj **objp, char *fmt, ...); |