Browse Source

* Renamed filters.* to filter.*.

pull/1/head
Sam Hocevar sam 18 years ago
parent
commit
30b6ca2596
4 changed files with 3 additions and 3 deletions
  1. +1
    -1
      src/Makefile.am
  2. +1
    -1
      src/filter.c
  3. +0
    -0
      src/filter.h
  4. +1
    -1
      src/main.c

+ 1
- 1
src/Makefile.am View File

@@ -4,7 +4,7 @@ bin_PROGRAMS = toilet
toilet_SOURCES = main.c \
io.c io.h \
render.c render.h \
filters.c filter.h \
filter.c filter.h \
figlet.c figlet.h
toilet_CFLAGS = `pkg-config --cflags cucul`
toilet_LDFLAGS = `pkg-config --libs cucul` @GETOPT_LIBS@ @ZLIB_LIBS@


src/filters.c → src/filter.c View File

@@ -22,7 +22,7 @@
#endif
#include <cucul.h>

#include "filters.h"
#include "filter.h"

void filter_autocrop(cucul_canvas_t *cv)
{

src/filters.h → src/filter.h View File


+ 1
- 1
src/main.c View File

@@ -34,7 +34,7 @@
#include "toilet.h"
#include "render.h"
#include "figlet.h"
#include "filters.h"
#include "filter.h"

static void version(void);
#if defined(HAVE_GETOPT_H)


Loading…
Cancel
Save