https://github.com/rofl0r/hexedit0r
personal fork of hexedit, a ncurses hexeditor
https://github.com/rofl0r/hexedit0r
Last synced: over 1 year ago
JSON representation
personal fork of hexedit, a ncurses hexeditor
- Host: GitHub
- URL: https://github.com/rofl0r/hexedit0r
- Owner: rofl0r
- License: gpl-2.0
- Created: 2011-10-26T21:45:11.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2020-04-29T16:58:34.000Z (about 6 years ago)
- Last Synced: 2025-04-11T05:52:26.540Z (over 1 year ago)
- Language: C
- Homepage: http://prigaux.chez.com/hexedit.html
- Size: 188 KB
- Stars: 9
- Watchers: 5
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README
- License: COPYING
Awesome Lists containing this project
README
this is hexedit0r, rofl0r's fork of hexedit 1.2.12
==================================================
differences from upstream hexedit:
- colors are enabled by default
- no autconf
- less type bugs (like using int for sizes)
requirements:
- a C compiler, preferably GCC
- ncurses headers and libraries
- gnu make
installation:
make CC=gcc [CFLAGS="-Wall"] [LDFLAGS="-static"] [-j16]
make [prefix=/usr] [DESTDIR=$HOME] install
in case your libc has memmem and/or memrmem, you can
add -DHAVE_MEMMEM / -DHAVE_MEMRMEM to your CFLAGS to use
the version provided by the libc.
likewise, if you have sys/mount.h, add -DHAVE_SYS_MOUNT_H.