a small libtool demo added to the demo distribution
committer: Markus Bröker <mbroeker@largo.homelinux.org>
/*
* $Id: not.c 94 2008-04-05 01:27:30Z mbroeker $
* $URL: http://localhost/svn/c/lsflib/trunk/src/not.c $
*
*/
#include <stdio.h>
#include <string.h>
char *not (char *s)
{
int i;
for (i = 0; i < strlen (s); i++)
s[i] = ~s[i];
return s;
}