]> git.proxmox.com Git - mirror_frr.git/blobdiff - lib/csv.h
zebra, lib: fix the ZEBRA_INTERFACE_VRF_UPDATE zapi message
[mirror_frr.git] / lib / csv.h
index 3ee568578c064db2b2f563e8906bc9c31860d928..3a0e5558cb7100c12ffb9e4604d4f1f6546e86ad 100644 (file)
--- 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