X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=lib%2Fobject.h;h=01c47dfbbf27b629f5ae01b52589c243f2316717;hb=06a12f5259063aa66bb4d6d8b4226677f4849157;hp=9b79f482e18ba48d2c02804fb0b955c5efb999f2;hpb=a010e5f6e075097c0d6362d40fb49e812e99e185;p=libucw.git diff --git a/lib/object.h b/lib/object.h index 9b79f482..01c47dfb 100644 --- a/lib/object.h +++ b/lib/object.h @@ -60,7 +60,6 @@ struct odes *obj_read_bucket(struct buck2obj_buf *buf, struct mempool *pool, uns */ int obj_read(struct fastbuf *, struct odes *); -void obj_read_multi(struct fastbuf *, struct odes *); /* obj2buck.c: Generating buckets from objects */ @@ -71,12 +70,14 @@ byte *put_attr_str(byte *ptr, uns type, byte *val); byte *put_attr_vformat(byte *ptr, uns type, byte *mask, va_list va); byte *put_attr_format(byte *ptr, uns type, char *mask, ...) __attribute__((format(printf,3,4))); byte *put_attr_num(byte *ptr, uns type, uns val); +byte *put_attr_separator(byte *ptr); void bput_attr(struct fastbuf *b, uns type, byte *val, uns len); void bput_attr_str(struct fastbuf *b, uns type, byte *val); void bput_attr_vformat(struct fastbuf *b, uns type, byte *mask, va_list va); void bput_attr_format(struct fastbuf *b, uns type, char *mask, ...) __attribute__((format(printf,3,4))); void bput_attr_num(struct fastbuf *b, uns type, uns val); +void bput_attr_separator(struct fastbuf *b); void obj_write(struct fastbuf *, struct odes *); void obj_write_nocheck(struct fastbuf *, struct odes *);