annotate include/mygetline.h @ 754:ecb991e41a4c

Add $controlN$ substitution The interfaces to substitute() and substitute_one() have changed, as they now need to know the listdir to be able to find control files
author Ben Schmidt
date Wed, 06 Oct 2010 23:30:26 +1100
parents 3f177909efc8
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
225
3f177909efc8 Goodbye GPL license, Welcome MIT
mmj
parents: 187
diff changeset
1 /* Copyright (C) 2002, 2003, 2004 Mads Martin Joergensen <mmj at mmj.dk>
3f177909efc8 Goodbye GPL license, Welcome MIT
mmj
parents: 187
diff changeset
2 *
3f177909efc8 Goodbye GPL license, Welcome MIT
mmj
parents: 187
diff changeset
3 * $Id$
3f177909efc8 Goodbye GPL license, Welcome MIT
mmj
parents: 187
diff changeset
4 *
3f177909efc8 Goodbye GPL license, Welcome MIT
mmj
parents: 187
diff changeset
5 * Permission is hereby granted, free of charge, to any person obtaining a copy
3f177909efc8 Goodbye GPL license, Welcome MIT
mmj
parents: 187
diff changeset
6 * of this software and associated documentation files (the "Software"), to
3f177909efc8 Goodbye GPL license, Welcome MIT
mmj
parents: 187
diff changeset
7 * deal in the Software without restriction, including without limitation the
3f177909efc8 Goodbye GPL license, Welcome MIT
mmj
parents: 187
diff changeset
8 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
3f177909efc8 Goodbye GPL license, Welcome MIT
mmj
parents: 187
diff changeset
9 * sell copies of the Software, and to permit persons to whom the Software is
3f177909efc8 Goodbye GPL license, Welcome MIT
mmj
parents: 187
diff changeset
10 * furnished to do so, subject to the following conditions:
3f177909efc8 Goodbye GPL license, Welcome MIT
mmj
parents: 187
diff changeset
11 *
3f177909efc8 Goodbye GPL license, Welcome MIT
mmj
parents: 187
diff changeset
12 * The above copyright notice and this permission notice shall be included in
3f177909efc8 Goodbye GPL license, Welcome MIT
mmj
parents: 187
diff changeset
13 * all copies or substantial portions of the Software.
3f177909efc8 Goodbye GPL license, Welcome MIT
mmj
parents: 187
diff changeset
14 *
3f177909efc8 Goodbye GPL license, Welcome MIT
mmj
parents: 187
diff changeset
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3f177909efc8 Goodbye GPL license, Welcome MIT
mmj
parents: 187
diff changeset
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3f177909efc8 Goodbye GPL license, Welcome MIT
mmj
parents: 187
diff changeset
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3f177909efc8 Goodbye GPL license, Welcome MIT
mmj
parents: 187
diff changeset
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3f177909efc8 Goodbye GPL license, Welcome MIT
mmj
parents: 187
diff changeset
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
3f177909efc8 Goodbye GPL license, Welcome MIT
mmj
parents: 187
diff changeset
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
3f177909efc8 Goodbye GPL license, Welcome MIT
mmj
parents: 187
diff changeset
21 * IN THE SOFTWARE.
3f177909efc8 Goodbye GPL license, Welcome MIT
mmj
parents: 187
diff changeset
22 */
3f177909efc8 Goodbye GPL license, Welcome MIT
mmj
parents: 187
diff changeset
23
33
647ec4f439b4 Rename mlmmj-subscribe to mlmmj-sub
mmj
parents: 29
diff changeset
24 #ifndef MYGETLINE_H
647ec4f439b4 Rename mlmmj-subscribe to mlmmj-sub
mmj
parents: 29
diff changeset
25 #define MYGETLINE_H
6
9eea0c9ae113 Helper functions
mmj
parents:
diff changeset
26
9eea0c9ae113 Helper functions
mmj
parents:
diff changeset
27 #define BUFSIZE 256
9eea0c9ae113 Helper functions
mmj
parents:
diff changeset
28
187
a287d5580e44 Comment out myfgetline since it's not used at all anymore
mmj
parents: 33
diff changeset
29 #if 0
a287d5580e44 Comment out myfgetline since it's not used at all anymore
mmj
parents: 33
diff changeset
30 #include <stdio.h>
29
f13d7b715cd6 updated to match mygetline.c
mortenp
parents: 6
diff changeset
31 char *myfgetline(FILE *infile);
187
a287d5580e44 Comment out myfgetline since it's not used at all anymore
mmj
parents: 33
diff changeset
32 #endif
29
f13d7b715cd6 updated to match mygetline.c
mortenp
parents: 6
diff changeset
33 char *mygetline(int fd);
754
ecb991e41a4c Add $controlN$ substitution
Ben Schmidt
parents: 225
diff changeset
34 char *mygetcontent(int fd);
6
9eea0c9ae113 Helper functions
mmj
parents:
diff changeset
35
33
647ec4f439b4 Rename mlmmj-subscribe to mlmmj-sub
mmj
parents: 29
diff changeset
36 #endif /* #ifndef MYGETLINE_H */