-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstrings.h
More file actions
23 lines (17 loc) · 693 Bytes
/
strings.h
File metadata and controls
23 lines (17 loc) · 693 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/******************************************************************************
* File: strings.h
* Author: Brandon Milton
* Website: http://brandonsoft.com
* GitHub: http://github.com/brandonio21
* May 19, 2014
*
* The purpose of strings.h is to contain all strings that zimdown.c will output
* to the user, so that they can be easily changed just in case there are
* some mistakes. This is in good C style, I reckon.
******************************************************************************/
#ifndef ZIMDOWN_STRINGS
#define ZIMDOWN_STRINGS
#define STR_USAGE "l"
#define STR_ERR_READFILE "Error reading file"
#define STR_ERR_WRITEFILE "Error opening file for writing"
#endif