mirror of
https://github.com/akheron/jansson.git
synced 2025-04-07 06:25:02 +00:00
load.c: Make stream_init() static
This commit is contained in:
parent
047a1417fb
commit
f9475f9577
1 changed files with 2 additions and 1 deletions
|
@ -113,7 +113,8 @@ static void error_set(json_error_t *error, const lex_t *lex,
|
|||
|
||||
/*** lexical analyzer ***/
|
||||
|
||||
void stream_init(stream_t *stream, get_func get, eof_func eof, void *data)
|
||||
static void
|
||||
stream_init(stream_t *stream, get_func get, eof_func eof, void *data)
|
||||
{
|
||||
stream->get = get;
|
||||
stream->eof = eof;
|
||||
|
|
Loading…
Add table
Reference in a new issue