forked from jhenin/spiff
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstrings.h
More file actions
23 lines (21 loc) · 733 Bytes
/
strings.h
File metadata and controls
23 lines (21 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* Copyright (c) 1988 Bellcore
** All Rights Reserved
** Permission is granted to copy or use this program, EXCEPT that it
** may not be sold for profit, the copyright notice must be reproduced
** on copies, and credit should be given to Bellcore where it is due.
** BELLCORE MAKES NO WARRANTY AND ACCEPTS NO LIABILITY FOR THIS PROGRAM.
*/
#include <string.h>
#include <stdio.h>
#ifndef S_INCLUDED
extern void S_wordcpy();
extern void S_skipword();
extern void S_skipspace();
extern void S_nextword();
extern int S_wordcmp();
extern void S_trimzeros();
extern void S_savestr();
extern void S_savenstr();
extern void S_allocstr();
#define S_INCLUDED
#endif