about summary refs log tree commit diff stats
path: root/shared.c
diff options
context:
space:
mode:
authorChristian Hesse2015-08-14 16:50:56 +0200
committerJason A. Donenfeld2015-08-17 14:25:08 +0200
commitf5c83d7b5ddceb03e1c6bda2e43c48500c7da9f5 (patch)
tree7c14ef706458087fabc88ad307a70cdb22df367c /shared.c
parentcmd: fix command definition (diff)
downloadcgit-f5c83d7b5ddceb03e1c6bda2e43c48500c7da9f5.tar.gz
cgit-f5c83d7b5ddceb03e1c6bda2e43c48500c7da9f5.zip
move get_mimetype_from_file() to shared
Signed-off-by: Christian Hesse <mail@eworm.de>
Diffstat (limited to 'shared.c')
-rw-r--r--shared.c40
1 files changed, 40 insertions, 0 deletions
diff --git a/shared.c b/shared.c index 3bd2a9e..fb4e8ca 100644 --- a/shared.c +++ b/shared.c
@@ -560,3 +560,43 @@ char *expand_macros(const char *txt)
560 } 560 }
561 return result; 561 return result;
562} 562}
563
564char *get_mimetype_from_file(const char *filename, const char *ext)
565{
566 static const char *delimiters;
567 char *result;
568 FILE *fd;
569 char line[1024];
570 char *mimetype;
571 char *token;
572
573 if (!filename)
574 return NULL;
575
576 fd = fopen(filename, "r");
577 if (!fd)
578 return NULL;
579
580 delimiters = " \t\r\n";
581 result = NULL;
582
583 /* loop over all lines in the file */
584 while (!result && fgets(line, sizeof(line), fd)) {
585 mimetype = strtok(line, delimiters);
586
587 /* skip empty lines and comment lines */
588 if (!mimetype || (mimetype[0] == '#'))
589 continue;
590
591 /* loop over all extensions of mimetype */
592 while ((token = strtok(NULL, delimiters))) {
593 if (!strcasecmp(ext, token)) {
594 result = xstrdup(mimetype);
595 break;
596 }
597 }
598 }
599 fclose(fd);
600
601 return result;
602}