lsflib/src/xor.c
author Markus Bröker <mbroeker@largo.dyndns.tv>
Sat, 23 May 2009 03:27:24 +0200
changeset 94 c100ba6939e3
parent 77 49e0babccb23
permissions -rw-r--r--
cppdatabase: removed the useless status message seekg returns an ifstream&, not an integer value committer: Markus Bröker <mbroeker@largo.homelinux.org>

/**
 * 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;
}