lsflib/include/bits.h
author Markus Bröker <mbroeker@largo.dyndns.tv>
Sun, 26 Jul 2009 18:21:25 +0200
changeset 103 be3fe4a4f097
parent 9 c3fecc82ade6
permissions -rw-r--r--
Function Pointer Demo simplified It makes more sense to show the basic usage of fps committer: Markus Bröker <mbroeker@largo.homelinux.org>

/**
 * test/demos/lsflib/include/bits.h
 * Copyright (C) 2008 Markus Broeker
 */

#ifndef __BITS_H__
#define __BITS_H__

#define BITS 8

char *bindump (char *, int);
char *hexdump (char *, int);
char *not (char *);
char *xor (char *, char);

#endif