Skip to content

DigitumDei/cs_string

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CsString is a standalone library which provides unicode aware string support.

The CsBasicString class is a templated class which provides unicode aware string support. The encoding, such
as UTF-8 or UTF-16, is passed to the CsBasicString template. The following typedefs are provided for convenience.

   using CsString       = CsBasicString<utf8>;
   using CsString_utf8  = CsBasicString<utf8>;
   using CsString_utf16 = CsBasicString<utf16>;

To use CsString you will need a C++11 compiler and a C++11 standard library. 

The Autotools build system is used only for building and running the unit test suite. The 
library has been tested with clang sanitizer and a major code review. 

This library is released under the BSD 2-clause license. For more information refer to the
LICENSE file provided with this project. 

Class level documentation for CsString is available on the CopperSpice website:

http://www.copperspice.com/documentation-lib.html

Website: copperspice.com
Email: info@copperspice.com

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 88.2%
  • Shell 5.3%
  • M4 4.9%
  • Makefile 1.6%