forked from stgl/poly3d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgetwords.h
26 lines (21 loc) · 832 Bytes
/
getwords.h
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
/*==================================================
SET TABSTOPS AT EVERY FOUR SPACES FOR PROPER DISPLAY
====================================================*/
/*****************************************************************************
* FILE: getwords.h
* DATE: June, 1993
* BY: Andrew L. Thomas
*
* Header file for getwords.c
*****************************************************************************/
/****************************** Includes/Defines ****************************/
#define GW_EOF_ERR -1
#define GW_MALLOC_ERR -2
#define GW_MAXWORDS_ERR -3
/**************************** Function Declarations *************************/
#if defined(__STDC__) || defined(ANSI) /* ANSI */
int getwords(FILE *ifp, char *line, int maxline, char *word[], int maxwords,
char continue_char);
#else
int getwords();
#endif