Skip to content
View lolitsalox's full-sized avatar
  • Israel
  • 12:21 (UTC +03:00)
Block or Report

Block or report lolitsalox

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. allocator allocator Public

    A simple implemantation of an allocator which is able to allocate, free and merge chunks of memory in order to not fragment the memory.

    C 1

  2. file_to_png file_to_png Public

    A simple C program that turns any file to an image

    C 1

  3. args shift function in c args shift function in c
    1
    char* args_shift(int* argc, char*** argv) {
    2
        assert(*argc > 0 && "argc <= 0");
    3
        --(*argc);
    4
        return *(*argv)++;
    5
    }
  4. Easy tools for dynamic arrays Easy tools for dynamic arrays
    1
    #ifndef DA
    2
    #define DA
    3
    
                  
    4
    // Initial capacity
    5
    #define DA_INIT_CAPACITY 32
  5. winhttp-template winhttp-template Public

    C