Skip to content

Foxbud/libfoxutils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Libfoxutils

Libfoxutils is a utility library written in and for C released under the Apache 2.0 license.

Features

  • Dynamic array (FoxArray).
  • Open hash table (FoxMap).
  • Non-cryptographic hashing functions.
  • Non-cryptographic pseudo-random number generators and utilities.
  • Both static and dynamic versions of library.

Limitations

Build + Installation

Standard (Library + Headers)

$ make
# make install

Library

$ make
# make install-symlinks

Library (32-bit)

$ make CFLAGS="-Wall -Wextra -O3 -fPIC -m32" LDFLAGS="-rdynamic -m32"
# make libdir='$(exec_prefix)/lib32' install-symlinks

Headers

# make install-headers

Documentation

$ make docs