Quellcode durchsuchen

* Removed \file directives from all files except caca.h and cucul.h, to

remove redundencies in the Doxygen documentation.
tags/v0.99.beta14
Sam Hocevar sam vor 18 Jahren
Ursprung
Commit
018fda76e8
43 geänderte Dateien mit 121 neuen und 204 gelöschten Zeilen
  1. +3
    -5
      caca/caca.c
  2. +2
    -0
      caca/caca.h
  3. +2
    -8
      caca/caca_internals.h
  4. +3
    -5
      caca/driver_conio.c
  5. +3
    -5
      caca/driver_gl.c
  6. +3
    -5
      caca/driver_ncurses.c
  7. +3
    -5
      caca/driver_raw.c
  8. +3
    -5
      caca/driver_slang.c
  9. +3
    -5
      caca/driver_vga.c
  10. +3
    -5
      caca/driver_win32.c
  11. +3
    -5
      caca/driver_x11.c
  12. +3
    -5
      caca/event.c
  13. +3
    -5
      caca/graphics.c
  14. +3
    -5
      caca/time.c
  15. +3
    -5
      cucul/box.c
  16. +3
    -5
      cucul/canvas.c
  17. +3
    -5
      cucul/charset.c
  18. +3
    -5
      cucul/colour.c
  19. +3
    -5
      cucul/conic.c
  20. +3
    -5
      cucul/cucul.c
  21. +2
    -0
      cucul/cucul.h
  22. +2
    -8
      cucul/cucul_internals.h
  23. +3
    -5
      cucul/dither.c
  24. +4
    -6
      cucul/export_ansi.c
  25. +4
    -6
      cucul/export_html.c
  26. +4
    -6
      cucul/export_irc.c
  27. +4
    -6
      cucul/export_ps.c
  28. +4
    -6
      cucul/export_svg.c
  29. +3
    -5
      cucul/font.c
  30. +3
    -5
      cucul/line.c
  31. +3
    -5
      cucul/math.c
  32. +3
    -5
      cucul/sprite.c
  33. +3
    -5
      cucul/transform.c
  34. +3
    -5
      cucul/triangle.c
  35. +3
    -5
      kernel/kernel.c
  36. +3
    -5
      kernel/kernel.h
  37. +3
    -9
      python/pypycaca.c
  38. +2
    -9
      python/pypycaca.h
  39. +2
    -2
      src/cacaplas.c
  40. +2
    -0
      src/cacaserver.c
  41. +1
    -1
      src/cacaview.c
  42. +1
    -1
      src/common-image.c
  43. +1
    -1
      src/common-image.h

+ 3
- 5
caca/caca.c Datei anzeigen

@@ -3,17 +3,15 @@
* Copyright (c) 2006 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/

/** \file caca.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \brief Main \e libcaca functions
*
/*
* This file contains the main functions used by \e libcaca applications to
* initialise the library, get the screen properties, set the framerate and
* so on.


+ 2
- 0
caca/caca.h Datei anzeigen

@@ -3,6 +3,8 @@
* Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See


+ 2
- 8
caca/caca_internals.h Datei anzeigen

@@ -3,20 +3,14 @@
* Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/

/** \file caca_internals.h
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \brief The \e libcaca private header.
*
* This header contains the private types and functions used by \e libcaca.
*/

#ifndef __CACA_INTERNALS_H__
#define __CACA_INTERNALS_H__



+ 3
- 5
caca/driver_conio.c Datei anzeigen

@@ -3,17 +3,15 @@
* Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/

/** \file driver_conio.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \brief DOS/conio.h driver
*
/*
* This file contains the libcaca DOS/conio.h input and output driver
*/



+ 3
- 5
caca/driver_gl.c Datei anzeigen

@@ -3,17 +3,15 @@
* Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/

/** \file driver_gl.c
* \version \$Id$
* \author Jean-Yves Lamoureux <jylam@lnxscene.org>
* \brief OpenGL driver
*
/*
* This file contains the libcaca OpenGL input and output driver
*/



+ 3
- 5
caca/driver_ncurses.c Datei anzeigen

@@ -3,17 +3,15 @@
* Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/

/** \file driver_ncurses.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \brief Ncurses driver
*
/*
* This file contains the libcaca Ncurses input and output driver
*/



+ 3
- 5
caca/driver_raw.c Datei anzeigen

@@ -3,17 +3,15 @@
* Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/

/** \file driver_raw.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \brief raw driver
*
/*
* This file contains the libcaca raw input and output driver
*/



+ 3
- 5
caca/driver_slang.c Datei anzeigen

@@ -3,17 +3,15 @@
* Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/

/** \file driver_slang.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \brief SLang driver
*
/*
* This file contains the libcaca SLang input and output driver
*/



+ 3
- 5
caca/driver_vga.c Datei anzeigen

@@ -3,17 +3,15 @@
* Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/

/** \file driver_vga.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \brief VGA driver
*
/*
* This file contains the libcaca VGA input and output driver
*/



+ 3
- 5
caca/driver_win32.c Datei anzeigen

@@ -3,17 +3,15 @@
* Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/

/** \file driver_win32.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \brief Win32 driver
*
/*
* This file contains the libcaca Win32 input and output driver
*/



+ 3
- 5
caca/driver_x11.c Datei anzeigen

@@ -3,17 +3,15 @@
* Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/

/** \file driver_x11.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \brief X11 driver
*
/*
* This file contains the libcaca X11 input and output driver
*/



+ 3
- 5
caca/event.c Datei anzeigen

@@ -3,17 +3,15 @@
* Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/

/** \file event.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \brief Event handling
*
/*
* This file contains event handling functions for keyboard and mouse input.
*/



+ 3
- 5
caca/graphics.c Datei anzeigen

@@ -3,17 +3,15 @@
* Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/

/** \file graphics.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \brief Character drawing
*
/*
* This file contains character and string drawing functions.
*/



+ 3
- 5
caca/time.c Datei anzeigen

@@ -3,17 +3,15 @@
* Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/

/** \file time.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \brief Timer routines
*
/*
* This file contains simple timer routines.
*/



+ 3
- 5
cucul/box.c Datei anzeigen

@@ -3,17 +3,15 @@
* Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/

/** \file box.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \brief Simple box drawing
*
/*
* This file contains box drawing functions, both filled and outline.
*/



+ 3
- 5
cucul/canvas.c Datei anzeigen

@@ -3,17 +3,15 @@
* Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/

/** \file canvas.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \brief Canvas drawing
*
/*
* This file contains various canvas handling functions such as character
* and string drawing.
*/


+ 3
- 5
cucul/charset.c Datei anzeigen

@@ -3,17 +3,15 @@
* Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/

/** \file charset.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \brief Character set conversions
*
/*
* This file contains functions for converting characters between
* various character sets.
*/


+ 3
- 5
cucul/colour.c Datei anzeigen

@@ -3,17 +3,15 @@
* Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/

/** \file colour.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \brief Colour handling
*
/*
* This file contains functions for converting colour values between
* various colourspaces.
*/


+ 3
- 5
cucul/conic.c Datei anzeigen

@@ -3,17 +3,15 @@
* Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/

/** \file conic.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \brief Ellipse and circle drawing
*
/*
* This file contains ellipse and circle drawing functions, both filled
* and outline.
*/


+ 3
- 5
cucul/cucul.c Datei anzeigen

@@ -3,17 +3,15 @@
* Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/

/** \file cucul.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \brief Main \e libcucul functions
*
/*
* This file contains the main functions used by \e libcucul applications
* to initialise a drawing context.
*/


+ 2
- 0
cucul/cucul.h Datei anzeigen

@@ -3,6 +3,8 @@
* Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See


+ 2
- 8
cucul/cucul_internals.h Datei anzeigen

@@ -3,20 +3,14 @@
* Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/

/** \file cucul_internals.h
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \brief The \e libcucul private header.
*
* This header contains the private types and functions used by \e libcucul.
*/

#ifndef __CUCUL_INTERNALS_H__
#define __CUCUL_INTERNALS_H__



+ 3
- 5
cucul/dither.c Datei anzeigen

@@ -3,17 +3,15 @@
* Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/

/** \file dither.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \brief Bitmap blitting
*
/*
* This file contains bitmap dithering functions.
*/



+ 4
- 6
cucul/export_ansi.c Datei anzeigen

@@ -1,20 +1,18 @@
/*
* libcucul Canvas for ultrafast compositing of Unicode letters
* Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
* 2006 Jean-Yves Lamoureux <jylam@lnxscene.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/

/** \file export_ansi.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \author Jean-Yves Lamoureux <jylam@lnxscene.org>
* \brief Export function
*
/*
* This file contains export functions for ANSI
*/



+ 4
- 6
cucul/export_html.c Datei anzeigen

@@ -1,20 +1,18 @@
/*
* libcucul Canvas for ultrafast compositing of Unicode letters
* Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
* 2006 Jean-Yves Lamoureux <jylam@lnxscene.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/

/** \file export_html.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \author Jean-Yves Lamoureux <jylam@lnxscene.org>
* \brief Export function
*
/*
* This file contains export functions for HTML and HTML3
*/



+ 4
- 6
cucul/export_irc.c Datei anzeigen

@@ -1,20 +1,18 @@
/*
* libcucul Canvas for ultrafast compositing of Unicode letters
* Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
* 2006 Jean-Yves Lamoureux <jylam@lnxscene.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/

/** \file export_irc.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \author Jean-Yves Lamoureux <jylam@lnxscene.org>
* \brief Export function
*
/*
* This file contains export functions for IRC
*/



+ 4
- 6
cucul/export_ps.c Datei anzeigen

@@ -1,20 +1,18 @@
/*
* libcucul Canvas for ultrafast compositing of Unicode letters
* Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
* 2006 Jean-Yves Lamoureux <jylam@lnxscene.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/

/** \file export_ps.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \author Jean-Yves Lamoureux <jylam@lnxscene.org>
* \brief Export function
*
/*
* This file contains export functions for Postscript files
*/



+ 4
- 6
cucul/export_svg.c Datei anzeigen

@@ -1,20 +1,18 @@
/*
* libcucul Canvas for ultrafast compositing of Unicode letters
* Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
* 2006 Jean-Yves Lamoureux <jylam@lnxscene.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/

/** \file export_svg.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \author Jean-Yves Lamoureux <jylam@lnxscene.org>
* \brief Export function
*
/*
* This file contains export functions for SVG (Scalable Vector Graphics files
*/



+ 3
- 5
cucul/font.c Datei anzeigen

@@ -3,17 +3,15 @@
* Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/

/** \file font.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \brief Colour handling
*
/*
* This file contains font handling functions.
*/



+ 3
- 5
cucul/line.c Datei anzeigen

@@ -3,17 +3,15 @@
* Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/

/** \file line.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \brief Line drawing
*
/*
* This file contains line and polyline drawing functions, with both thin
* and thick styles.
*/


+ 3
- 5
cucul/math.c Datei anzeigen

@@ -3,17 +3,15 @@
* Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/

/** \file math.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \brief Math
*
/*
* This file contains simple mathematical routines.
*/



+ 3
- 5
cucul/sprite.c Datei anzeigen

@@ -3,17 +3,15 @@
* Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/

/** \file sprite.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \brief Sprite loading and blitting
*
/*
* This file contains a small framework for sprite loading and blitting.
*/



+ 3
- 5
cucul/transform.c Datei anzeigen

@@ -3,17 +3,15 @@
* Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/

/** \file transform.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \brief Canvas transformation
*
/*
* This file contains horizontal and vertical flipping routines.
*/



+ 3
- 5
cucul/triangle.c Datei anzeigen

@@ -3,17 +3,15 @@
* Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/

/** \file triangle.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \brief Triangle drawing
*
/*
* This file contains triangle drawing functions, both filled and outline.
*/



+ 3
- 5
kernel/kernel.c Datei anzeigen

@@ -4,17 +4,15 @@
* Copyright (c) 2006 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/

/** \file kernel.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \brief Kernel features
*
/*
* This file contains replacement functions for the standard C library
* that must be used when building libcucul and libcaca into a kernel.
*/


+ 3
- 5
kernel/kernel.h Datei anzeigen

@@ -4,17 +4,15 @@
* Copyright (c) 2006 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/

/** \file kernel.h
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \brief Kernel features
*
/*
* This file contains replacement functions for the standard C library
* that must be used when building libcucul and libcaca into a kernel.
*/


+ 3
- 9
python/pypycaca.c Datei anzeigen

@@ -1,22 +1,16 @@
/*
* PypyCaca libcaca Python bindings
* PypyCaca libcaca Python bindings
* Copyright (c) 2006 Jean-Yves Lamoureux <jylam@lnxscene.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/

/** \file pycaca.c
* \version \$Id:
* \author Jean-Yves Lamoureux <jylam@lnxscene.org>
* \brief Main \e pypycaca bindings functions
*
* This file contains functions for python bindings
*/

#include "pypycaca.h"

static PyMethodDef CacaMethods[] = {


+ 2
- 9
python/pypycaca.h Datei anzeigen

@@ -3,21 +3,14 @@
* Copyright (c) 2006 Jean-Yves Lamoureux <jylam@lnxscene.org>
* All Rights Reserved
*
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/

/** \file pycaca.h
* \version \$Id:
* \author Jean-Yves Lamoureux <jylam@lnxscene.org>
* \brief Main \e pypycaca bindings definitions
*
* This file contains functions prototypes for python bindings
*/


#include <Python.h>
#include <caca.h>
#define SET_INTCONSTANT(dict, value) \


+ 2
- 2
src/cacaplas.c Datei anzeigen

@@ -1,7 +1,7 @@
/*
* cacaplas plasma effect for libcaca
* Copyright (c) 2004 Sam Hocevar <sam@zoy.org>
* 1998 Michele Bini <mibin@tin.it>
* Copyright (c) 1998 Michele Bini <mibin@tin.it>
* 2004 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
*
* $Id$


+ 2
- 0
src/cacaserver.c Datei anzeigen

@@ -4,6 +4,8 @@
* 2006 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
*
* $Id$
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the Do What The Fuck You Want To
* Public License, Version 2, as published by Sam Hocevar. See


+ 1
- 1
src/cacaview.c Datei anzeigen

@@ -1,6 +1,6 @@
/*
* cacaview image viewer for libcaca
* Copyright (c) 2003 Sam Hocevar <sam@zoy.org>
* Copyright (c) 2003-2006 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
*
* $Id$


+ 1
- 1
src/common-image.c Datei anzeigen

@@ -1,6 +1,6 @@
/*
* Imaging tools for cacaview and img2irc
* Copyright (c) 2003, 2004, 2005, 2006 Sam Hocevar <sam@zoy.org>
* Copyright (c) 2003-2006 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
*
* $Id$


+ 1
- 1
src/common-image.h Datei anzeigen

@@ -1,6 +1,6 @@
/*
* Imaging tools for cacaview and img2irc
* Copyright (c) 2003, 2004, 2005, 2006 Sam Hocevar <sam@zoy.org>
* Copyright (c) 2003-2006 Sam Hocevar <sam@zoy.org>
* All Rights Reserved
*
* $Id$


Laden…
Abbrechen
Speichern