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
16 lines
332 B
C
16 lines
332 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 ERROR_H
|
|
#define ERROR_H 1
|
|
|
|
void error_log(char *, ...);
|
|
void error_print(void);
|
|
char *error_get(void);
|
|
void error_clear(void);
|
|
|
|
#endif |