blob: 9420164dba98dd73956b0b10c7bd2b393692134b (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef HEADERBODY_H
#define HEADERBODY_H
#include "buffer.h"
#include "stralloc.h"
extern int headerbody(
buffer *b, void (*dohf)(stralloc *), void (*hdone)(void), void (*dobl)(stralloc *));
#endif
|