libJelling-calc/include/libJelling/module.h

33 lines
734 B
C++

/*
* AUTHOR : Xavier Bruni
*
* ----------------------------------------------------------------------------
* "THE BEER-WARE LICENSE" (Revision 42):
* As long as you retain this notice you can do whatever you want with this
* stuff. If we meet some day, and you think this stuff is worth it, you can
* buy me a beer in return.
* ----------------------------------------------------------------------------
*/
#define LIB_JELLING
#define MODULE_H_INCLUDED
extern "C"{
#include "syscall.h"
#include <stdio.h>
#include <string.h>
#include "libJelling/libJelling.h"
}
class Module{
public:
static int setName(char* string);
static int setPassword(char* string);
private:
static int set(unsigned char* string);
};