memx-cdy 0.1.0

memory functions like a libc memcmp(), memchr(), memmem(), memcpy(), memset()
Documentation

memx-cdy

c interface of memory functions like a libc memcmp(), memchr(), memmem(), memcpy(), memset()

Features

  • Rewriting with rust lang.
  • Faster os libc.

Quick install

  1. you can install this into cargo bin path:
cargo install memx-cdy
  1. you can build debian package:
cargo deb

and install .deb into your local repository of debian package.

Usage

Easy to use, LD_PRELOAD.

  1. usecase: cargo install
$ LD_PRELOAD=~/.cargo/bin/libmemx_cdy command

or

$ export LD_PRELOAD=~/.cargo/bin/libmemx_cdy
  1. usecase: debian package
$ LD_PRELOAD=/usr/lib/libmemx_cdy.0.1 command

or

$ export LD_PRELOAD=/usr/lib/libmemx_cdy.0.1

References