Code Monkey home page Code Monkey logo

bin2h's Introduction

bin2h

  • A simple 'binary to C-header' program that can work as platform-independent (just needs a C compiler to do the work)

Usage example

  • A simple usage example that dumps eleven bytes from the self bin2h executable file into the default output filename (resolved at runtime)
./bin2h bin2h --symbol-name=binary_file_dump --count=11 --skip=10 --column-size=12
  • The result from the above command (bin2h.h):
/*  Auto generated header file by 'bin2h' (VERSION: 0.0.1)
 *  at 21:03:04 - 12/28/21
*/

#pragma once

#if defined (__cplusplus)
extern "C" {
#endif

unsigned long long binary_file_dump_size = 11;

unsigned char binary_file_dump[11] = {
    0x7f, 0x45, 0x4c, 0x46, 0x02, 0x01, 0x01, 0x00, 
    0x00, 0x00, 0x00
};

#if defined (__cplusplus)
}
#endif

How to compile

  • Just type:
mkdir build
cd build
build> cmake ..
build> make

How to install

  • Simply type the following command in the build directory as root:
build> make install

bin2h's People

Contributors

spirvdev avatar

Stargazers

 avatar  avatar  avatar

Watchers

 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.