diff options
| author | Lars Hjemli | 2007-05-18 23:56:10 +0200 |
|---|---|---|
| committer | Lars Hjemli | 2007-05-18 23:56:10 +0200 |
| commit | 5e75128a8bee885d83563d8c521172328d511d12 (patch) | |
| tree | 39e32199b06b6e68782040d5c2a46162fb0cf771 /html.c | |
| parent | 08cc2e5f0e24773dad81d38bd6b689e36afe9dda (diff) | |
| download | cgit-5e75128a8bee885d83563d8c521172328d511d12.tar.gz cgit-5e75128a8bee885d83563d8c521172328d511d12.tar.bz2 cgit-5e75128a8bee885d83563d8c521172328d511d12.zip | |
Add html_include()
This is a function used to include external htmlfiles in cgit-
generated pages.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'html.c')
| -rw-r--r-- | html.c | 14 |
1 files changed, 14 insertions, 0 deletions
| @@ -166,3 +166,17 @@ void html_filemode(unsigned short mode) | |||
| 166 | html_fileperm(mode >> 3); | 166 | html_fileperm(mode >> 3); |
| 167 | html_fileperm(mode); | 167 | html_fileperm(mode); |
| 168 | } | 168 | } |
| 169 | |||
| 170 | int html_include(const char *filename) | ||
| 171 | { | ||
| 172 | FILE *f; | ||
| 173 | char buf[4096]; | ||
| 174 | size_t len; | ||
| 175 | |||
| 176 | if (!(f = fopen(filename, "r"))) | ||
| 177 | return -1; | ||
| 178 | while((len = fread(buf, 1, 4096, f)) > 0) | ||
| 179 | write(htmlfd, buf, len); | ||
| 180 | fclose(f); | ||
| 181 | return 0; | ||
| 182 | } | ||
