blob: dc9e442a89e66293b44534cbc8252ffba4e08684 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* ISC license. */
#ifndef FTRIGR_INTERNAL_H
#define FTRIGR_INTERNAL_H
#include <skalibs/stralloc.h>
#define FTRIGR_BANNER1 "ftrigr v2.0 (b)\n"
#define FTRIGR_BANNER2 "ftrigr v2.0 (a)\n"
typedef struct ftrigr_data_s ftrigr_data, *ftrigr_data_ref ;
struct ftrigr_data_s
{
int status ;
stralloc sa ;
} ;
#define FTRIGR_DATA_ZERO { .id = 0, .status = 0, .sa = STRALLOC_ZERO }
#endif
|