Giter VIP home page Giter VIP logo

libcstr's Introduction

libcstr - C string library

Introduction

libcstr is a library to manage C-style null-terminated string. libcstr is released under GPL license (v3 or later).

Inspiration

This library take many idea and code from sds and stricks. However, libcstr is still implemented independently

Features

libcstr implement most of C++ std::string functionality (up to c++11), while still retain the performance of C null-terminated string, including:

  • Compability with C standard library string examination function, means you can use libcstr-provided string type as argument for those functions
  • Freely access char* array member(s)
  • Append, copy, remove, manipulate string
  • Developer can freely modify the functionality with cstr_cfg.h, which are generated from template file cstr_cfg.h.in`.

Structure

libcstr-provided string type, cstr_t is basically char*, but its structure are:

    +---------------------------------------------------+
    | Metadata | `char` array . . .    | Null terminator|
    +----------+-----------------------+----------------+
               |-> This is the pointer provided to developer 's location

As of sds and stricks library, metadata are stored in a header whose location right before pointer return to developer. Every string allocated are terminate with a '\0', no matter whether the real content include a '\0'.

API

For more informations, checkout API.md

libcstr's People

Contributors

lieu02tard avatar

Watchers

 avatar

libcstr's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.