MCPcopy Create free account
hub / github.com/blender/cycles / xml_read_boolean

Function xml_read_boolean

src/graph/node_xml.cpp:14–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12# include "util/transform.h"
13
14CCL_NAMESPACE_BEGIN
15
16static bool xml_read_boolean(const char *value)
17{
18 return string_iequals(value, "true") || (atoi(value) != 0);
19}
20
21static const char *xml_write_boolean(bool value)
22{

Callers 1

xml_read_nodeFunction · 0.85

Calls 1

string_iequalsFunction · 0.85

Tested by

no test coverage detected