~vcs-imports/pidgin-musictracker/trunk

« back to all changes in this revision

Viewing changes to src/filter.h

  • Committer: jon.turney at org
  • Date: 2010-03-02 15:42:24 UTC
  • Revision ID: svn-v4:dccc4ef9-3752-0410-9079-47cdceed9760:trunk:449
Always apply printable character filter to track information

(issue 198)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#ifndef __FILTER_H__
2
2
#define __FILTER_H__
3
3
 
4
 
void filter(char* str);
 
4
void filter_profanity(char *str);
 
5
void filter_printable(char *str);
5
6
const char* filter_get_default(void);
6
7
 
7
8
#endif // __FILTER_H__