treewrite: use Lindent to reformat to kernel coding style
[oweals/opkg-lede.git] / libopkg / parse_util.h
index 3263509814dd95931b45436418dbd89e2f02477d..6b7d4993ef0fe4c91abd3355a3fc8ae10928f5d0 100644 (file)
 
 int is_field(const char *type, const char *line);
 char *parse_simple(const char *type, const char *line);
-char **parse_list(const char *raw, unsigned int *count, const char sep, int skip_field);
+char **parse_list(const char *raw, unsigned int *count, const char sep,
+                 int skip_field);
 
-typedef int (*parse_line_t)(void *, const char *, uint);
-int parse_from_stream_nomalloc(parse_line_t parse_line, void *item, FILE *fp, uint mask,
-                                               char **buf0, size_t buf0len);
+typedef int (*parse_line_t) (void *, const char *, uint);
+int parse_from_stream_nomalloc(parse_line_t parse_line, void *item, FILE * fp,
+                              uint mask, char **buf0, size_t buf0len);
 
 #endif