選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

25 行
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 *);