1BSON_APPEND_TIME_T(3) Libbson BSON_APPEND_TIME_T(3)
2
3
4
6 bson_append_time_t - bson_append_time_t()
7
9 #define BSON_APPEND_TIME_T(b, key, val) \
10 bson_append_time_t (b, key, (int) strlen (key), val)
11
12 bool
13 bson_append_time_t (bson_t *bson,
14 const char *key,
15 int key_length,
16 time_t value);
17
19 · bson: A bson_t.
20
21 · key: An ASCII C string containing the name of the field.
22
23 · key_length: The length of key in bytes, or -1 to determine the length
24 with strlen().
25
26 · value: A time_t.
27
29 The bson_append_time_t() function is a helper that takes a time_t
30 instead of milliseconds since the UNIX epoch.
31
33 Returns true if the operation was applied successfully. The function
34 will fail if appending the value grows bson larger than INT32_MAX.
35
37 MongoDB, Inc
38
40 2017-present, MongoDB, Inc
41
42
43
44
451.13.1 Jan 24, 2019 BSON_APPEND_TIME_T(3)