Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下是一些记录我要使用的功能的链接:
xmlNewNode
xmlNewChild
xmlNewProp
由于这些函数使用动态内存分配,我想做错误检查,但我找不到有关这些函数在发生错误时的行为的信息。这些函数是否只是在失败时返回 NULL ?
是的,就像大多数libxml2返回指针的函数一样,这些函数NULL在失败时返回。
libxml2
NULL