Skip to content
Snippets Groups Projects
Select Git revision
  • 1bad50eed6d6c4db2f6b7570b25cf447dcf5a7fe
  • master default protected
2 results

main.c

Blame
  • main.c 160 B
    #include <stdio.h>
    
    #include "bit_mods.h"
    #include "bit_mods_macros.h"
    #include "log2.h"
    
    int main(void) {
        printf("%i", clearBit(0b11, 1));
        return 0;
    }