blob: 9ada459aaf364783fcf007aa8f3b3c56137ee462 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
## int2bin
int2bin is a simple program which converts integers passed as arguments into a binary representation. int2bin does support negative integers, and represents them using 2s compliment notation. For documentation run
```
$ int2bin --help
```
### Compiling and Installing
The program's only dependencies are make and gcc (although any C compiler should work). To compile and install int2bin:
```
$ make
# make install
```
|