modified: Makefile new file: src/error.c new file: src/error.h new file: src/input.c new file: src/input.h modified: src/nms.c modified: src/nmseffect.c modified: src/nmseffect.h
15 lines
376 B
C
15 lines
376 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 GPL License. See LICENSE for more details.
|
|
*/
|
|
|
|
#ifndef INPUT_H
|
|
#define INPUT_H 1
|
|
|
|
int input_get(unsigned char** dest, char *prompt);
|
|
int input_get_str(char** dest, char *prompt);
|
|
int input_get_from_pipe(unsigned char** dest);
|
|
|
|
#endif |