String#

Functions

ITALA_API_C ItalaError NODE_StringSetValue(H_NODE hNode, const char *pValue)#

Set the value of the node in a string Node.

Parameters:
  • hNode[in] Handle to Node instance, should be a string node.

  • pValue[out] Value to set to the Node.

Returns:

ItalaError the error code; return ItalaErrorSuccess (0) if no errors occures.

ITALA_API_C ItalaError NODE_StringGetValue(H_NODE hNode, char *value, size_t *pSize)#

Get the value of the node in a string Node.

Parameters:
  • hNode[in] Handle to Node instance, should be a string node.

  • value[out] Value of the Node.

  • pSize[inout] Maximum element of the array in input, number of element filled in output.

Returns:

ItalaError the error code; return ItalaErrorSuccess (0) if no errors occures.

ITALA_API_C ItalaError NODE_StringGetMaxLength(H_NODE hNode, int64_t *pMaxLength)#

Get the string maximum length of a string Node.

Parameters:
  • hNode[in] Handle to Node instance, should be a string node.

  • pMaxLength[out] Maximum length of the Node value.

Returns:

ItalaError the error code; return ItalaErrorSuccess (0) if no errors occures.