Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

25 lignes
700 B

  1. /*
  2. * Imaging tools for cacaview and img2irc
  3. * Copyright (c) 2003-2010 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 Sam Hocevar. See
  10. * http://sam.zoy.org/wtfpl/COPYING for more details.
  11. */
  12. struct image
  13. {
  14. char *pixels;
  15. unsigned int 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 *);