diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-05-28 01:56:13 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-05-28 01:56:13 -0400 |
| commit | 59c5470adeb99da30dfd9d45a6035ec0936b29f3 (patch) | |
| tree | 314e509827ba62e579fb4f62526b9953c158545c /json.c | |
| parent | 1dd05d2d18f30f1ee921386f50cc1b63f32a09e2 (diff) | |
Tweak default visibility settings
Diffstat (limited to 'json.c')
| -rw-r--r-- | json.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -5,6 +5,7 @@ #include <stdio.h> #include "json.h" +#include "utils.h" __attribute__((nonnull)) static int _json_match(const char *text, match_t *m, int comma, bool verbose); @@ -77,7 +78,7 @@ static int _json_match(const char *text, match_t *m, int comma, bool verbose) // // Print a match object as a JSON object. // -void json_match(const char *text, match_t *m, bool verbose) +public void json_match(const char *text, match_t *m, bool verbose) { (void)_json_match(text, m, 0, verbose); } |
