no-more-secrets-rust/src/nmseffect.h
Brian Barto bd5614363f Change function name to nmseffect_set_returnopts()
modified:   src/nmseffect.c
	modified:   src/nmseffect.h
	modified:   src/sneakers.c
2017-01-19 11:25:24 -05:00

21 lines
523 B
C

/*
* Copyright (c) 2017 Brian Barto
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the MIT License. See LICENSE for more details.
*/
#ifndef NMSEFFECT_H
#define NMSEFFECT_H 1
// Function prototypes
char nmseffect_exec(char *);
void nmseffect_set_foregroundcolor(char *);
void nmseffect_set_returnopts(char *);
void nmseffect_set_autodecrypt(int);
void nmseffect_set_clearscr(int);
void nmseffect_use_color(int);
void nmseffect_set_input_position(int, int);
#endif