Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Forgot to include own modules header file |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
63f34fd1cefc6309f0a77a00fe7b340d |
User & Date: | darrenbane 2014-02-07 16:28:29.852 |
Context
2014-02-07
| ||
22:53 | Convert man markup to mdoc; formatting not perfect yet check-in: 9007d5e6a1 user: darrenbane tags: trunk | |
16:28 | Forgot to include own modules header file check-in: 63f34fd1ce user: darrenbane tags: trunk | |
15:14 | Finish doxygen for module interfaces. Could write a main page, but theres probably no need. check-in: 96244a5839 user: darrenbane tags: trunk | |
Changes
Changes to src/lbl.c.
︙ | ︙ | |||
23 24 25 26 27 28 29 | #include <string.h> #include <unistd.h> #include <stdlib.h> #include <err.h> #include <sysexits.h> #include <limits.h> #include <assert.h> | < | 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | #include <string.h> #include <unistd.h> #include <stdlib.h> #include <err.h> #include <sysexits.h> #include <limits.h> #include <assert.h> #include "lbl.h" #include "signals.h" #include "scan.h" #include "rescan.h" extern int lflag; extern int sflag; |
︙ | ︙ |
Changes to src/list.c.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | /* (C) C.D.F. Miller, Heriot-Watt University, March 1984 * * Permission is hereby given to reproduce or modify this * software freely, provided that this notice be retained, * and that no use be made of the software for commercial * purposes without the express written permission of the * author. */ #include <lbl.h> void listtype(type *); extern char *def_format; extern LIST_HEAD(, type) typehead; void | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | /* (C) C.D.F. Miller, Heriot-Watt University, March 1984 * * Permission is hereby given to reproduce or modify this * software freely, provided that this notice be retained, * and that no use be made of the software for commercial * purposes without the express written permission of the * author. */ #include <lbl.h> #include "list.h" void listtype(type *); extern char *def_format; extern LIST_HEAD(, type) typehead; void |
︙ | ︙ |
Changes to src/printl.c.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | /* (C) C.D.F. Miller, Heriot-Watt University, March 1984 * * Permission is hereby given to reproduce or modify this * software freely, provided that this notice be retained, * and that no use be made of the software for commercial * purposes without the express written permission of the * author. */ #include <err.h> #include <lbl.h> void printr(char, us int, FILE *); static void printd(us int, FILE *); static void printa(char, us int, FILE *); static void auxprinta(char, us int, FILE *); void | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | /* (C) C.D.F. Miller, Heriot-Watt University, March 1984 * * Permission is hereby given to reproduce or modify this * software freely, provided that this notice be retained, * and that no use be made of the software for commercial * purposes without the express written permission of the * author. */ #include <err.h> #include <lbl.h> #include "printl.h" void printr(char, us int, FILE *); static void printd(us int, FILE *); static void printa(char, us int, FILE *); static void auxprinta(char, us int, FILE *); void |
︙ | ︙ |
Changes to src/scan.c.
︙ | ︙ | |||
8 9 10 11 12 13 14 15 16 17 18 19 20 21 | */ #include <lbl.h> #include <ctype.h> #include <string.h> #include <err.h> #include "build.h" void process(char *); extern char macroname[]; extern char *filename; extern int sflag; extern FILE *tempfile; | > | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | */ #include <lbl.h> #include <ctype.h> #include <string.h> #include <err.h> #include "build.h" #include "scan.h" void process(char *); extern char macroname[]; extern char *filename; extern int sflag; extern FILE *tempfile; |
︙ | ︙ |