diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-04-26 11:07:25 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-04-26 11:07:25 -0400 |
commit | 8ae6d29e66997f90e36803d19f5b23b63a9c4a4b (patch) | |
tree | e73efff25966663d1e173a44b019be814b1a923a /src/c | |
parent | 976a0710e0888683f5db1e37d1cb06af083f9e0b (diff) |
blobSize
Diffstat (limited to 'src/c')
-rw-r--r-- | src/c/urweb.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/c/urweb.c b/src/c/urweb.c index 22b8a902..1d6b804f 100644 --- a/src/c/urweb.c +++ b/src/c/urweb.c @@ -2183,6 +2183,10 @@ uw_Basis_string uw_Basis_fileMimeType(uw_context ctx, uw_Basis_file f) { return f.type; } +uw_Basis_int uw_Basis_blobSize(uw_context ctx, uw_Basis_blob b) { + return b.size; +} + uw_Basis_blob uw_Basis_fileData(uw_context ctx, uw_Basis_file f) { return f.data; } |