You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
648 B

  1. /*
  2. * TOIlet The Other Implementation’s letters
  3. * Copyright (c) 2006 Sam Hocevar <sam@zoy.org>
  4. * All Rights Reserved
  5. *
  6. * $Id$
  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. * This header defines functions for compressed file I/O.
  15. */
  16. typedef struct toifile TOIFILE;
  17. TOIFILE *toiopen(const char *, const char *);
  18. int toiclose(TOIFILE *);
  19. int toieof(TOIFILE *);
  20. char *toigets(char *, int, TOIFILE *);