2 * UCW Library -- File Sizes
4 * (c) 1999--2012 Martin Mares <mj@ucw.cz>
6 * This software may be freely distributed and used according to the terms
7 * of the GNU Lesser General Public License.
13 ucw_off_t ucw_file_size(const char *name)
15 int fd = ucw_open(name, O_RDONLY);
17 die("Cannot open %s: %m", name);
18 ucw_off_t len = ucw_seek(fd, 0, SEEK_END);