Vuo  0.6.1
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Typedefs | Functions
VuoText.h File Reference

Description

VuoText C type definition.

Typedefs

typedef const char * VuoText
 A Unicode (UTF-8) text string.
 

Functions

VuoText VuoText_valueFromJson (json_object *js)
 Decodes the JSON object js, expected to contain a string, to create a new value.
 
json_object * VuoText_jsonFromValue (const VuoText value)
 Encodes value as a JSON object.
 
char * VuoText_summaryFromValue (const VuoText value)
 Creates a new UTF-8 C string from value, or, if it's more than 32 characters long, creates an aposiopesis.
 
VuoText VuoText_make (const char *unquotedString)
 Creates a VuoText value from an unquoted string (unlike VuoText_valueFromString(), which expects a quoted string).
 
size_t VuoText_length (const VuoText string)
 Returns the number of UTF-8 characters in the string.
 
size_t VuoText_getIndexOfLastCharacter (const VuoText string, const VuoText character)
 Returns the index (starting at 1) of the last instance of character in string.
 
VuoText VuoText_substring (const VuoText string, int startIndex, int length)
 Returns the substring of string starting at index startIndex and spanning length UTF-8 characters.
 
VuoText VuoText_append (VuoText *texts, unsigned long textsCount)
 Returns a string consisting of the elements in the texts array concatenated together.
 
VuoText VuoText_valueFromString (const char *str)
 Automatically generated function.
 
char * VuoText_stringFromValue (const VuoText value)
 Automatically generated function.