Skip to content

Purrlite/SString

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SString Build Status Coverity Scan Build Status

SString is a string library that introduces a new structure SString with many functions to work with them.

The documentation can be found in sstring.h.


The SString structure consists of:

  1. The string itself, which is a C string, so normal C string functions can use it.
  2. Length, which is the amount of meaningful bits for characters in the string. It doesn't include \0 or characters behind it.
  3. Size, which is the size of the allocated memory for the string.