-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPrint.h
More file actions
21 lines (15 loc) · 729 Bytes
/
Print.h
File metadata and controls
21 lines (15 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef _SIMPLE_PRINT_H
#define _SIMPLE_PRINT_H
////////////////////////////////////////////////////////////////////////////////
//
// General functions.
//
////////////////////////////////////////////////////////////////////////////////
extern _INT32 Print(FILE* lpFile,_STRING lpstrFormat,...);
extern _INT32 PrintLine(FILE* lpFile,_STRING lpstrFormat,...);
extern _STRING Format(_STRING lpstrContent,_STRING lpstrFormat,...);
extern _STRING FormatLine(_STRING lpstrContent,_STRING lpstrFormat,...);
extern _BOOL IsEndWithNewLine(_STRING lpstrContent);
extern void ClearEndWithNewLine(_STRING lpstrContent);
////////////////////////////////////////////////////////////////////////////////
#endif //End of the head file !