From d62a17aedeb0eebdba98238874bb13d62c48dbf9 Mon Sep 17 00:00:00 2001 From: whitespace / reindent Date: Mon, 17 Jul 2017 14:03:14 +0200 Subject: *: reindent indent.py `git ls-files | pcregrep '\.[ch]$' | pcregrep -v '^(ldpd|babeld|nhrpd)/'` Signed-off-by: David Lamparter --- lib/csv.h | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'lib/csv.h') diff --git a/lib/csv.h b/lib/csv.h index 3ee568578c..3a0e5558cb 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 -- cgit v1.2.3