73 lines
2.3 KiB
C
73 lines
2.3 KiB
C
/* GNU Talkfilters
|
|
Copyright (C) 1998-2003 Free Software Foundation, Inc.
|
|
|
|
This file is part of GNU Talkfilters
|
|
|
|
GNU Talkfilters is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License as
|
|
published by the Free Software Foundation; either version 2, or (at
|
|
your option) any later version.
|
|
|
|
This software is distributed in the hope that it will be amusing, but
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this software; see the file COPYING. If not, write to the
|
|
Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
|
|
#ifndef __gnu_talkfilters_h
|
|
#define __gnu_talkfilters_h
|
|
|
|
#include <sys/types.h>
|
|
|
|
/* filter lookup interface */
|
|
|
|
typedef struct
|
|
{
|
|
char *name;
|
|
char *desc;
|
|
int (*filter)(const char *, char *, size_t);
|
|
} gtf_filter_t;
|
|
|
|
extern int gtf_filter_count(void);
|
|
|
|
extern const gtf_filter_t *gtf_filter_list(void);
|
|
|
|
extern const gtf_filter_t *gtf_filter_lookup(const char *name);
|
|
|
|
/* individual filters */
|
|
|
|
extern int gtf_filter_b1ff(const char *input, char *buf, size_t bufsz);
|
|
|
|
extern int gtf_filter_brooklyn(const char *input, char *buf, size_t bufsz);
|
|
|
|
extern int gtf_filter_chef(const char *input, char *buf, size_t bufsz);
|
|
|
|
extern int gtf_filter_cockney(const char *input, char *buf, size_t bufsz);
|
|
|
|
extern int gtf_filter_drawl(const char *input, char *buf, size_t bufsz);
|
|
|
|
extern int gtf_filter_fudd(const char *input, char *buf, size_t bufsz);
|
|
|
|
extern int gtf_filter_funetak(const char *input, char *buf, size_t bufsz);
|
|
|
|
extern int gtf_filter_jethro(const char *input, char *buf, size_t bufsz);
|
|
|
|
extern int gtf_filter_jive(const char *input, char *buf, size_t bufsz);
|
|
|
|
extern int gtf_filter_kraut(const char *input, char *buf, size_t bufsz);
|
|
|
|
extern int gtf_filter_pansy(const char *input, char *buf, size_t bufsz);
|
|
|
|
extern int gtf_filter_postmodern(const char *input, char *buf, size_t bufsz);
|
|
|
|
extern int gtf_filter_redneck(const char *input, char *buf, size_t bufsz);
|
|
|
|
extern int gtf_filter_valspeak(const char *input, char *buf, size_t bufsz);
|
|
|
|
extern int gtf_filter_warez(const char *input, char *buf, size_t bufsz);
|
|
|
|
#endif /* __gnu_talkfilters_h */
|