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 | d824fdd52fb824a6a9db9fb3cc32cfb28746d04b (patch) | |
tree | e73efff25966663d1e173a44b019be814b1a923a /src | |
parent | 8be9bc6c82ce1ad669f4696bc91415f3421e51b8 (diff) |
blobSize
Diffstat (limited to 'src')
-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; } |