1BSON_UTF8_ESCAPE_FOR_JSON(3)        libbson       BSON_UTF8_ESCAPE_FOR_JSON(3)
2
3
4

NAME

6       bson_utf8_escape_for_json - bson_utf8_escape_for_json()
7

SYNOPSIS

9          char *
10          bson_utf8_escape_for_json (const char *utf8, ssize_t utf8_len);
11

PARAMETERS

13utf8: A UTF-8 encoded string.
14
15utf8_len: The length of utf8 in bytes or -1 if it is NULL terminated.
16

DESCRIPTION

18       Allocates  a new string matching utf8 except that special characters in
19       JSON are escaped. The resulting string is also UTF-8 encoded.
20
21       Both " and \ characters will be backslash-escaped. If  a  NUL  byte  is
22       found  before  utf8_len  bytes,  it  is  converted  to  "\u0000". Other
23       non-ASCII characters in the input are preserved.
24

RETURNS

26       A newly allocated string that should be freed with bson_free().
27

AUTHOR

29       MongoDB, Inc
30
32       2017-present, MongoDB, Inc
33
34
35
36
371.17.6                           Jun 03, 2021     BSON_UTF8_ESCAPE_FOR_JSON(3)
Impressum