lsflib/src/xor.c
author Markus Bröker <mbroeker@largo.dyndns.tv>
Thu, 16 Apr 2009 12:50:39 +0200
changeset 69 b5912e5f899f
parent 9 c3fecc82ade6
child 77 49e0babccb23
permissions -rw-r--r--
Useless cross_getch hack removed cross_getch provides a version of getch for every os. The Windows Part does not work under wine, but it works on the target platform. committer: Markus Bröker <mbroeker@largo.homelinux.org>

/**
 * test/demos/lsflib/src/xor.c
 * Copyright (C) 2008 Markus Broeker
 */

#include <string.h>

char *xor (char *s, char key)
{
    int i;

    for (i = 0; i < strlen (s); i++)
        s[i] ^= key;

    return s;
}