Root/
| 1 | /* |
| 2 | * run.h - Run helper scripts |
| 3 | * |
| 4 | * Copyright 2012 by Werner Almesberger |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; either version 2 of the License, or |
| 9 | * (at your option) any later version. |
| 10 | */ |
| 11 | |
| 12 | #ifndef RUN_H |
| 13 | #define RUN_H |
| 14 | |
| 15 | void run_cmd(const char *fmt, ...); |
| 16 | void cat(FILE *out, const char *name); |
| 17 | |
| 18 | #endif /* !RUN_H */ |
| 19 |
Branches:
master
