]> mj.ucw.cz Git - libucw.git/blobdiff - lib/object.h
Parsing of PLAIN type buckets also ends after buck_len bytes.
[libucw.git] / lib / object.h
index 9b79f482e18ba48d2c02804fb0b955c5efb999f2..01c47dfbbf27b629f5ae01b52589c243f2316717 100644 (file)
@@ -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 *);