forked from amberisvibin/bbs
11 lines
171 B
C
11 lines
171 B
C
/* SPDX-License-Identifier: MIT */
|
|
|
|
#ifndef ERROR_H /* header guard */
|
|
#define ERROR_H
|
|
|
|
#include "screens.h"
|
|
|
|
void draw_error(struct Screen *screen, char *input);
|
|
|
|
#endif
|