| 3 |
* bwf |
* bwf |
| 4 |
* - bad words filter |
* - bad words filter |
| 5 |
* |
* |
| 6 |
* Copyright (C) 2004-2025 Leaflet <leaflet@leafok.com> |
* Copyright (C) 2004-2026 Leaflet <leaflet@leafok.com> |
| 7 |
*/ |
*/ |
| 8 |
|
|
| 9 |
#ifndef _BWF_H_ |
#ifndef _BWF_H_ |
| 10 |
#define _BWF_H_ |
#define _BWF_H_ |
| 11 |
|
|
| 12 |
extern int bwf_load(const char *filename); |
extern int bwf_load(const char *filename); |
| 13 |
extern void bwf_unload(void); |
extern int bwf_compile(void); |
| 14 |
|
extern void bwf_cleanup(void); |
| 15 |
|
|
| 16 |
extern int check_badwords(char *str, char c_replace); |
extern int check_badwords(char *str, char c_replace); |
| 17 |
|
|