Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 
 

25 linhas
691 B

  1. /*
  2. * Imaging tools for cacaview and img2irc
  3. * Copyright © 2003—2018 Sam Hocevar <sam@hocevar.net>
  4. * All Rights Reserved
  5. *
  6. * This program is free software. It comes without any warranty, to
  7. * the extent permitted by applicable law. You can redistribute it
  8. * and/or modify it under the terms of the Do What the Fuck You Want
  9. * to Public License, Version 2, as published by the WTFPL Task Force.
  10. * See http://www.wtfpl.net/ for more details.
  11. */
  12. struct image
  13. {
  14. char *pixels;
  15. size_t w, h;
  16. struct caca_dither *dither;
  17. void *priv;
  18. };
  19. /* Local functions */
  20. extern struct image * load_image(char const *);
  21. extern void unload_image(struct image *);