Searched refs:zcbor_tstr_encode_ptr (Results 1 – 2 of 2) sorted by relevance
| /zcbor-latest/include/ |
| D | zcbor_encode.h | 206 bool zcbor_tstr_encode_ptr(zcbor_state_t *state, const char *str, size_t len); 210 #define zcbor_tstr_put_lit(state, str) zcbor_tstr_encode_ptr(state, str, sizeof(str) - 1) 212 #define zcbor_tstr_put_arr(state, str) zcbor_tstr_encode_ptr(state, str, sizeof(str))
|
| /zcbor-latest/src/ |
| D | zcbor_encode.c | 310 bool zcbor_tstr_encode_ptr(zcbor_state_t *state, const char *str, size_t len) function 326 return zcbor_tstr_encode_ptr(state, str, strnlen(str, maxlen));
|