Skip to content

Single-header binary analysis library. Written in ansi-c

License

Notifications You must be signed in to change notification settings

hanilr/variation-bin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

61 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Variation: Binary

Variation Binary is single-header binary analysis library. Written in Ansi-c which means c89 standard version.

Libraries are written in the ANSI-C standard because the user must be able to use them both in the C89 standard and in higher standards.

Dependencies

  • gcc > Gnu Compiler Collection

  • make > Gnu Make

In Windows, you should have mingw and gnu make programs. In Linux, you can install easly in teminal via package managers.

Important Note

You need to define #define VN_BIN_IMPLEMENTATION before #include "vn_bin.h"

#define VN_BIN_IMPLEMENTATION
#include "vn_bin.h"

If you installed the library then you should do like this.

#include <vn/vn_bin.h>

You can see examples in demo/ folder.

Example

#include <stdio.h>

#define VN_BIN_IMPLEMENTATION
#include "vn_bin.h"

int main(void) {
    enum Bin_S S_4 = 4;
    enum Bin_S S_8 = 8;
    enum Bin_S S_16 = 16;
    enum Bin_S S_32 = 32;
    enum Bin_S S_64 = 64;
    enum Bin_S S_128 = 128;

    struct Bin_T Bin[6];
    int num[6] = {3, 7, 15, 31, 63, 127};

    Bin[0] = vn_int_to_bin(S_4, num[0]);
    Bin[1] = vn_int_to_bin(S_8, num[1]);
    Bin[2] = vn_int_to_bin(S_16, num[2]);
    Bin[3] = vn_int_to_bin(S_32, num[3]);
    Bin[4] = vn_int_to_bin(S_64, num[4]);
    Bin[5] = vn_int_to_bin(S_128, num[5]);

    bin_print(S_4, Bin[0]);
    bin_print(S_8, Bin[1]);
    bin_print(S_16, Bin[2]);
    bin_print(S_32, Bin[3]);
    bin_print(S_64, Bin[4]);
    bin_print(S_128, Bin[5]);

    return 0;
}

Shared-Library and Default-Library

Show make list with make or make run commands.

make run

Compile as Shared-Library

make compile

This command only compile as .so and its for Linux only.

You can clean compile files with this command.

make clean

Using as Default Library

make install

You can find in /usr/include/vn/

You can uninstall with this command.

make uninstall

You can take a look to wiki page if you want learn more

Check Other Variation Libraries