blob: 8de3a209056f133accba5f46f2f6857f4b1af7e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* ISC license. */
#ifndef PAMELA_INTERNAL_H
#define PAMELA_INTERNAL_H
#include <sys/uio.h>
#include <skalibs/stralloc.h>
#include <pamela/pamela.h>
extern int pamela_query_string (pamela_t *, char const *, size_t, stralloc *) ;
extern int pamela_set_item_internal (pamela_t *, struct iovec const *, unsigned int) ;
#endif
|