summaryrefslogtreecommitdiffstats
path: root/lib/csv.h
diff options
context:
space:
mode:
authorwhitespace / reindent <invalid@invalid.invalid>2017-07-17 14:03:14 +0200
committerwhitespace / reindent <invalid@invalid.invalid>2017-07-17 14:04:07 +0200
commitd62a17aedeb0eebdba98238874bb13d62c48dbf9 (patch)
tree3b319b1d61c8b85b4d1f06adf8b844bb8a9b5107 /lib/csv.h
parent*: add indent control files (diff)
downloadfrr-d62a17aedeb0eebdba98238874bb13d62c48dbf9.tar.xz
frr-d62a17aedeb0eebdba98238874bb13d62c48dbf9.zip
indent.py `git ls-files | pcregrep '\.[ch]$' | pcregrep -v '^(ldpd|babeld|nhrpd)/'` Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'lib/csv.h')
-rw-r--r--lib/csv.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/lib/csv.h b/lib/csv.h
index 3ee568578..3a0e5558c 100644
--- a/lib/csv.h
+++ b/lib/csv.h
@@ -78,7 +78,7 @@ typedef struct _csv_t_ csv_t;
* Initialize the CSV structure (if necessary, allocate first). Point to
* the passed string buffer.
*/
-csv_t * csv_init(csv_t *csv, char *buf, int buflen);
+csv_t *csv_init(csv_t *csv, char *buf, int buflen);
/**
* Encode the variable list of arguments as CSV fields. The csv structure
@@ -99,8 +99,7 @@ csv_record_t *csv_encode(csv_t *csv, int count, ...);
* processes/nodes - e.g. the message header record can be rewritten AFTER
* encoding all other records, with new information such as total length.
*/
-csv_record_t *csv_encode_record(csv_t *csv, csv_record_t *rec,
- int count, ...);
+csv_record_t *csv_encode_record(csv_t *csv, csv_record_t *rec, int count, ...);
/**
* Decode a CSV formatted string. The csv structure should have been
@@ -149,7 +148,7 @@ int csv_is_record_valid(csv_t *csv, csv_record_t *in_rec);
* rec1 and rec2 are removed
*/
csv_record_t *csv_concat_record(csv_t *csv, csv_record_t *rec1,
- csv_record_t *rec2);
+ csv_record_t *rec2);
/**
* Remove a record from csv
@@ -167,8 +166,7 @@ void csv_insert_record(csv_t *csv, csv_record_t *rec);
* append fields to a record
* Only works when csv has discrete record bufs
*/
-csv_record_t *
-csv_append_record (csv_t *csv, csv_record_t *rec, int count, ...);
+csv_record_t *csv_append_record(csv_t *csv, csv_record_t *rec, int count, ...);
/**
* Serialize contents of csv into string
@@ -180,11 +178,11 @@ int csv_serialize(csv_t *csv, char *msgbuf, int msglen);
* Clone a record.
* Only works when csv has discrete record bufs
*/
-void csv_clone_record (csv_t *csv, csv_record_t *in_rec, csv_record_t **out_rec);
+void csv_clone_record(csv_t *csv, csv_record_t *in_rec, csv_record_t **out_rec);
/**
* Return number of records
*/
-int csv_num_records (csv_t *csv);
+int csv_num_records(csv_t *csv);
#endif