lsflib/src/not.c
author Markus Bröker <mbroeker@largo.dyndns.tv>
Tue, 09 Jun 2009 12:42:30 +0200
changeset 98 0e8eddac99cb
parent 77 49e0babccb23
permissions -rw-r--r--
Install Target added The simple module can be autoinstalled into the proper section committer: Markus Bröker <mbroeker@largo.homelinux.org>

/**
 * lsflib/src/not.c
 * Copyright (C) 2008 Markus Broeker
 */

#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;
}