This website works better with JavaScript.
Home
Help
Sign In
cacalabs
/
toilet
mirror of
https://github.com/cacalabs/toilet.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
0
Wiki
Activity
Browse Source
* Renamed filters.* to filter.*.
pull/1/head
Sam Hocevar
sam
18 years ago
parent
f8a41ca9a0
commit
30b6ca2596
4 changed files
with
3 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/Makefile.am
+1
-1
src/filter.c
+0
-0
src/filter.h
+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 \
filter
s
.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 "filter
s
.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 "filter
s
.h"
#include "filter.h"
static void version(void);
#if defined(HAVE_GETOPT_H)
Write
Preview
Loading…
Cancel
Save