MCPcopy Create free account
hub / github.com/corosync/corosync / icmap_set_string_r

Function icmap_set_string_r

exec/icmap.c:561–569  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

559}
560
561cs_error_t icmap_set_string_r(const icmap_map_t map, const char *key_name, const char *value)
562{
563
564 if (value == NULL) {
565 return (CS_ERR_INVALID_PARAM);
566 }
567
568 return (icmap_set_r(map, key_name, value, strlen(value), ICMAP_VALUETYPE_STRING));
569}
570
571cs_error_t icmap_set_int8(const char *key_name, int8_t value)
572{

Calls 1

icmap_set_rFunction · 0.85

Tested by

no test coverage detected