Run clang-format on *.c, *.h

This commit is contained in:
Petri Lehtinen
2019-10-17 09:08:51 +03:00
parent 7dc463ee4e
commit 79fe8c3435
39 changed files with 2508 additions and 2913 deletions

View File

@@ -8,12 +8,13 @@
#ifndef STRBUFFER_H
#define STRBUFFER_H
#include "jansson.h"
#include <stdlib.h>
typedef struct {
char *value;
size_t length; /* bytes used */
size_t size; /* bytes allocated */
size_t length; /* bytes used */
size_t size; /* bytes allocated */
} strbuffer_t;
int strbuffer_init(strbuffer_t *strbuff) JANSSON_ATTRS((warn_unused_result));