File: strings.h

package info (click to toggle)
rlinetd 0.6.2-3
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 2,052 kB
  • ctags: 465
  • sloc: sh: 9,460; ansic: 2,859; yacc: 1,453; lex: 125; makefile: 116; perl: 4
file content (21 lines) | stat: -rw-r--r-- 379 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef H_STRINGFISH
#define H_STRINGFISH

#include "bytecode.h"
#include "db.h"
#include "rlinetd.h"

struct argvtab {
	int argc;
	struct loglist *ents;
	char **argv;
	struct iovec *iov;
	char *str;
};

void loglist_build(struct rl_instance *i, struct loglist *l);
void string_build(struct rl_instance *inst, struct argvtab *a);

#endif /* H_STRINGFISH */

/* vim: set ts=2: */