-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnewlib.hpp
More file actions
38 lines (27 loc) · 1.23 KB
/
newlib.hpp
File metadata and controls
38 lines (27 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/* newlib.hpp */
/***********************************************************************************/
/** */
/** RESOURCES AND DEFINITIONS FOR NEWLIB POGRAM */
/** */
/**--------------------------------------------------------------------------------*/
/** */
/** History: 05/17/2018 - Initial Release, Ryan M. McHale */
/** */
/***********************************************************************************/
#ifndef _NEWLIB_HPP_
#define _NEWLIB_HPP_
/**
**** 1 - Configuration And Parameter Constants
*/
/** 1.2 - Error Codes */
/** 1.3 - Internal Error Codes */
#define INT_ERR_No_Args_Provided 100
#define INT_ERR_Invalad_Argument 101
/**
**** 2 - Prototypes of Public Functions
*/
/** 2.1 - Functions for library creation */
extern int ParseInput(int argc, char **argv);
extern int CreateHeader(void);
extern int CreateSource(void);
#endif /** _NEWLIB_HPP_ */