Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

cc_string(3) [debian man page]

cc_string(3)							       Coin							      cc_string(3)

NAME
cc_string - The cc_string type is a C ADT for ASCII string management. This is a Coin extension. SYNOPSIS
#include <Inventor/C/base/string.h> Public Attributes char * pointer size_t bufsize char buffer [CC_STRING_MIN_SIZE] Related Functions (Note that these are not member functions.) void cc_string_remove_substring (cc_string *me, int start, int end) void cc_string_construct (cc_string *me) cc_string * cc_string_construct_new (void) cc_string * cc_string_clone (const cc_string *string) void cc_string_clean (cc_string *string_struct) void cc_string_destruct (cc_string *me) void cc_string_set_text (cc_string *me, const char *text) void cc_string_set_subtext (cc_string *me, const char *text, int start, int end) void cc_string_set_integer (cc_string *me, int integer) void cc_string_set_string (cc_string *me, const cc_string *string) void cc_string_append_string (cc_string *me, const cc_string *string) void cc_string_append_text (cc_string *me, const char *text) void cc_string_append_integer (cc_string *me, const int digits) void cc_string_append_char (cc_string *me, const char c) unsigned int cc_string_length (const cc_string *me) void cc_string_clear (cc_string *me) void cc_string_clear_no_free (cc_string *me) uint32_t cc_string_hash_text (const char *text) uint32_t cc_string_hash (const cc_string *me) const char * cc_string_get_text (const cc_string *me) int cc_string_is (const cc_string *me) int cc_string_compare (const cc_string *lhs, const cc_string *rhs) int cc_string_compare_text (const char *lhs, const char *rhs) int cc_string_compare_subtext (const cc_string *me, const char *text, int offset) void cc_string_apply (cc_string *string, cc_apply_f function) void cc_string_sprintf (cc_string *me, const char *formatstr,...) void cc_string_vsprintf (cc_string *me, const char *formatstr, va_list args) Detailed Description The cc_string type is a C ADT for ASCII string management. This is a Coin extension. Author Generated automatically by Doxygen for Coin from the source code. Version 3.1.3 Wed May 23 2012 cc_string(3)

Check Out this Related Man Page

SbVec3us(3)							       Coin							       SbVec3us(3)

NAME
SbVec3us - SYNOPSIS
#include <Inventor/SbVec3us.h> Public Member Functions SbVec3us (const unsigned short v[3]) SbVec3us (unsigned short x, unsigned short y, unsigned short z) SbVec3us (const SbVec3s &v) SbVec3us (const SbVec3ub &v) SbVec3us (const SbVec3ui32 &v) SbVec3us & setValue (const unsigned short v[3]) SbVec3us & setValue (unsigned short x, unsigned short y, unsigned short z) SbVec3us & setValue (const SbVec3s &v) SbVec3us & setValue (const SbVec3ub &v) SbVec3us & setValue (const SbVec3ui32 &v) const unsigned short * getValue (void) const void getValue (unsigned short &x, unsigned short &y, unsigned short &z) const unsigned short & operator[] (int i) const unsigned short & operator[] (int i) const int32_t dot (const SbVec3us &v) const void negate (void) SbVec3us & operator*= (int d) SbVec3us & operator*= (double d) SbVec3us & operator/= (int d) SbVec3us & operator/= (double d) SbVec3us & operator+= (const SbVec3us &v) SbVec3us & operator-= (const SbVec3us &v) SbVec3us operator- (void) const Protected Attributes unsigned short vec [3] Detailed Description Since: Coin 2.5 Author Generated automatically by Doxygen for Coin from the source code. Version 3.1.3 Wed May 23 2012 SbVec3us(3)
Man Page