Skip to content
View alsamitech's full-sized avatar
  • Alsami Technologies
  • United States of America

Highlights

  • Pro

Organizations

@alsami-tech

Block or report alsamitech

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. sebbekarlsson/tac Public

    tac x86 compiler

    C 88 14

  2. The Compound Tokenizer, but faster.
    1
    char** atokl(char* InC, char* delim, long unsigned int* len){
    2
      long unsigned int capacity=32;
    3
      char** tok=(char**)malloc(capacity*sizeof(char**));
    4
      //printf("%p\n", tok);
    5
    
                  
  3. my_atol_hex_oct_dec - like my_atol_r...
    1
    long int my_atol(char* str){
    2
        long int res=0;
    3
        if(str[0]=='0'){
    4
            // see if it's hex or oct
    5
            if(str[1]=='x'){
  4. alsami-tech/xTemplates Public

    Templates for the XLib library. This is just so people don't have to write boilerplate code over and over again.

    C 1