소스 검색

* Added content description to all source files.

pull/1/head
Sam Hocevar sam 19 년 전
부모
커밋
b3bc7d4270
7개의 변경된 파일27개의 추가작업 그리고 0개의 파일을 삭제
  1. +4
    -0
      src/figlet.c
  2. +3
    -0
      src/figlet.h
  3. +4
    -0
      src/filters.c
  4. +4
    -0
      src/filters.h
  5. +4
    -0
      src/main.c
  6. +4
    -0
      src/render.c
  7. +4
    -0
      src/render.h

+ 4
- 0
src/figlet.c 파일 보기

@@ -11,6 +11,10 @@
* http://sam.zoy.org/wtfpl/COPYING for more details. * http://sam.zoy.org/wtfpl/COPYING for more details.
*/ */


/*
* This file contains functions for handling FIGlet fonts.
*/

#include "config.h" #include "config.h"


#if defined(HAVE_INTTYPES_H) #if defined(HAVE_INTTYPES_H)


+ 3
- 0
src/figlet.h 파일 보기

@@ -11,6 +11,9 @@
* http://sam.zoy.org/wtfpl/COPYING for more details. * http://sam.zoy.org/wtfpl/COPYING for more details.
*/ */


/*
* This header defines functions for handling FIGlet fonts.
*/
extern cucul_canvas_t *render_figlet(uint32_t const *, unsigned int, extern cucul_canvas_t *render_figlet(uint32_t const *, unsigned int,
char const *); char const *);



+ 4
- 0
src/filters.c 파일 보기

@@ -11,6 +11,10 @@
* http://sam.zoy.org/wtfpl/COPYING for more details. * http://sam.zoy.org/wtfpl/COPYING for more details.
*/ */


/*
* This file contains post-processing filter functions.
*/

#include "config.h" #include "config.h"


#if defined(HAVE_INTTYPES_H) #if defined(HAVE_INTTYPES_H)


+ 4
- 0
src/filters.h 파일 보기

@@ -11,6 +11,10 @@
* http://sam.zoy.org/wtfpl/COPYING for more details. * http://sam.zoy.org/wtfpl/COPYING for more details.
*/ */


/*
* This header defines post-processing filter functions.
*/

extern void filter_autocrop(cucul_canvas_t *); extern void filter_autocrop(cucul_canvas_t *);
extern void filter_metal(cucul_canvas_t *); extern void filter_metal(cucul_canvas_t *);
extern void filter_gay(cucul_canvas_t *); extern void filter_gay(cucul_canvas_t *);


+ 4
- 0
src/main.c 파일 보기

@@ -11,6 +11,10 @@
* http://sam.zoy.org/wtfpl/COPYING for more details. * http://sam.zoy.org/wtfpl/COPYING for more details.
*/ */


/*
* This is the main program entry point.
*/

#include "config.h" #include "config.h"


#if defined(HAVE_INTTYPES_H) #if defined(HAVE_INTTYPES_H)


+ 4
- 0
src/render.c 파일 보기

@@ -11,6 +11,10 @@
* http://sam.zoy.org/wtfpl/COPYING for more details. * http://sam.zoy.org/wtfpl/COPYING for more details.
*/ */


/*
* This file contains text to canvas rendering functions.
*/

#include "config.h" #include "config.h"


#if defined(HAVE_INTTYPES_H) #if defined(HAVE_INTTYPES_H)


+ 4
- 0
src/render.h 파일 보기

@@ -11,6 +11,10 @@
* http://sam.zoy.org/wtfpl/COPYING for more details. * http://sam.zoy.org/wtfpl/COPYING for more details.
*/ */


/*
* This header defines text to canvas rendering functions.
*/

extern cucul_canvas_t *render_big(uint32_t const *, unsigned int); extern cucul_canvas_t *render_big(uint32_t const *, unsigned int);
extern cucul_canvas_t *render_tiny(uint32_t const *, unsigned int); extern cucul_canvas_t *render_tiny(uint32_t const *, unsigned int);



불러오는 중...
취소
저장