Skip to content

Commit ce1bb6c

Browse files
author
Erik Olsson
committed
Import jansson headers using double quotes consistently
1 parent 796090b commit ce1bb6c

28 files changed

+33
-33
lines changed

doc/github_commits.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#include <string.h>
1010

1111
#include <curl/curl.h>
12-
#include <jansson.h>
12+
#include "jansson.h"
1313

1414
#define BUFFER_SIZE (256 * 1024) /* 256 KB */
1515

examples/simple_parse.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* it under the terms of the MIT license. See LICENSE for details.
2323
*/
2424

25-
#include <jansson.h>
25+
#include "jansson.h"
2626
#include <stdio.h>
2727
#include <stdlib.h>
2828

src/hashtable.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*/
77

88
#if HAVE_CONFIG_H
9-
#include <jansson_private_config.h>
9+
#include "jansson_private_config.h"
1010
#endif
1111

1212
#include <stdlib.h>
@@ -18,7 +18,7 @@
1818

1919
#include "hashtable.h"
2020
#include "jansson_private.h" /* for container_of() */
21-
#include <jansson_config.h> /* for JSON_INLINE */
21+
#include "jansson_config.h" /* for JSON_INLINE */
2222

2323
#ifndef INITIAL_HASHTABLE_ORDER
2424
#define INITIAL_HASHTABLE_ORDER 3

src/hashtable_seed.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*/
44

55
#ifdef HAVE_CONFIG_H
6-
#include <jansson_private_config.h>
6+
#include "jansson_private_config.h"
77
#endif
88

99
#include <stdio.h>

src/lookup3.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ on 1 byte), but shoehorning those bytes into integers efficiently is messy.
3838
#include <stdlib.h>
3939

4040
#ifdef HAVE_CONFIG_H
41-
#include <jansson_private_config.h>
41+
#include "jansson_private_config.h"
4242
#endif
4343

4444
#ifdef HAVE_STDINT_H

src/strconv.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
/* need jansson_private_config.h to get the correct snprintf */
1212
#ifdef HAVE_CONFIG_H
13-
#include <jansson_private_config.h>
13+
#include "jansson_private_config.h"
1414
#endif
1515

1616
#if JSON_HAVE_LOCALECONV

src/utf.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#define UTF_H
1010

1111
#ifdef HAVE_CONFIG_H
12-
#include <jansson_private_config.h>
12+
#include "jansson_private_config.h"
1313
#endif
1414

1515
#include <stddef.h>

src/value.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#endif
1111

1212
#ifdef HAVE_CONFIG_H
13-
#include <jansson_private_config.h>
13+
#include "jansson_private_config.h"
1414
#endif
1515

1616
#include <math.h>

test/bin/json_process.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
*/
77

88
#ifdef HAVE_CONFIG_H
9-
#include <jansson_private_config.h>
9+
#include "jansson_private_config.h"
1010
#endif
1111

12+
#include "jansson.h"
1213
#include <ctype.h>
13-
#include <jansson.h>
1414
#include <stdio.h>
1515
#include <stdlib.h>
1616
#include <string.h>

test/suites/api/test_array.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*/
77

88
#include "util.h"
9-
#include <jansson.h>
9+
#include "jansson.h"
1010

1111
static void test_misc(void) {
1212
json_t *array, *five, *seven, *value;

0 commit comments

Comments
 (0)