File: config_stream.h

package info (click to toggle)
ipvsadm 1%3A1.31-5
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 632 kB
  • sloc: ansic: 3,797; sh: 349; makefile: 138
file content (20 lines) | stat: -rw-r--r-- 419 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 *      Code to convert a stream input into a dynamic array
 *      that can be parsed as argc and argv.
 *
 *      Authors: Horms <horms@vergenet.net>
 *
 *      Released under the terms of the GNU GPL
 */

#ifndef CONFIG_STREAM_FLIM
#define CONFIG_STREAM_FLIM

#include "dynamic_array.h"

#define MAX_LINE_LENGTH 4096

dynamic_array_t *config_stream_read(FILE * stream,
				    const char *first_element);

#endif