source: toilet/trunk/src/io.h @ 1367

Last change on this file since 1367 was 1206, checked in by Sam Hocevar, 17 years ago
  • Support for PKZIP-compressed fonts using zlib.
  • Property svn:keywords set to Id
File size: 648 bytes
Line 
1/*
2 *  TOIlet        The Other Implementation’s letters
3 *  Copyright (c) 2006 Sam Hocevar <sam@zoy.org>
4 *                All Rights Reserved
5 *
6 *  $Id: io.h 1206 2006-10-19 20:55:44Z sam $
7 *
8 *  This program is free software; you can redistribute it and/or
9 *  modify it under the terms of the Do What The Fuck You Want To
10 *  Public License, Version 2, as published by Sam Hocevar. See
11 *  http://sam.zoy.org/wtfpl/COPYING for more details.
12 */
13
14/*
15 * This header defines functions for compressed file I/O.
16 */
17typedef struct toifile TOIFILE;
18
19TOIFILE *toiopen(const char *, const char *);
20int toiclose(TOIFILE *);
21int toieof(TOIFILE *);
22char *toigets(char *, int, TOIFILE *);
23
Note: See TracBrowser for help on using the repository browser.