summaryrefslogtreecommitdiff
path: root/vfs.c
diff options
context:
space:
mode:
Diffstat (limited to 'vfs.c')
-rw-r--r--vfs.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/vfs.c b/vfs.c
index 53266b5c..7e6f64ee 100644
--- a/vfs.c
+++ b/vfs.c
@@ -79,3 +79,8 @@ int64_t
vfs_fgetlength (DB_FILE *stream) {
return stream->vfs->getlength (stream);
}
+
+const char *
+vfs_get_content_type (DB_FILE *stream) {
+ return stream->vfs->get_content_type (stream);
+}