Code Monkey home page Code Monkey logo

clib's Introduction

c language trash box

  • tinyalloc : Releases all requested memory at once instead of releasing each object separately.

    • tinyalloc : The requested memory block can be freed individually.
    • bumpalloc : The requested memory block cannot be freed individually, you can only call bumpreset/bumpdestroy to free all blocks at once
    • fixedalloc :
  • strbuf: Auto-growing string buffer

    • wcsbuf : The wchar_t version of strbuf
  • rarray : Auto-growing arrays(by realloc)

    // rarray_fast_set, rarray_fast_get
    struct point {
        int x, y, z;
    };
    struct rarray array = { .size = sizeof(struct point), .base = NULL };
    int len = 16;
    // you could also call `rarray_grow()` to increase "capacity" only
    rarray_setlen(&array, len);
    struct point *ptr = rarray_fast_get(&array, struct point, 0);
    for (int i = 0; i < len; i++) {
        *ptr++ = (struct point){ i, i, i };
    }
    for (int i = 0; i < len; i++) {
        struct point *ptr = rarray_fast_get(&array, struct point, i);
        assert(ptr->x == i && ptr->y == i && ptr->z == i);
    }
    rarray_discard(&array);
  • slist.h: Singly Linked List. Deprecated

  • ucs2: wcs_to_utf8, utf8_to_wcs

  • rjson :

  • circ_buf.h: Copied from linux/circ_buf.h

  • list.h: Doubly Linked List. Copied from linux/tools/list.h

  • rbtree: Copied from linux/tools/rbtree.h

external links

clib's People

Contributors

r32 avatar

Stargazers

 avatar

Watchers

 avatar  avatar

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.