Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 479 Bytes

README_EN.md

File metadata and controls

23 lines (16 loc) · 479 Bytes

C String

English Русский

Independent header-only library for working with strings in C (not finished)

Pros

  • Does not depend on any standard library (completely independent)
  • Can replace many standard libraries
  • Easy to use
  • Clear and concise names

Quick start

To use this library you need to define CSTR_IMPLEMENTATION in .c file

// ...
#define CSTR_IMPLEMENTATION
#include "path/to/cstr.h" // "cstr.h"
// ...