/* [<][>][^][v][top][bottom][index][help] */
DEFINITIONS
This source file includes following definitions.
- str_purify_filename
/* $Id: fpm_str.h,v 1.3 2008/05/24 17:38:47 anight Exp $ */
/* (c) 2007,2008 Andrei Nigmatulin */
#ifndef FPM_STR_H
#define FPM_STR_H 1
static inline char *str_purify_filename(char *dst, char *src, size_t size) /* {{{ */
{
char *d, *end;
d = dst;
end = dst + size - 1;
for (; d < end && *src; ++d, ++src) {
if (* (unsigned char *) src < ' ' || * (unsigned char *) src > '\x7f') {
*d = '.';
} else {
*d = *src;
}
}
*d = '\0';
return d;
}
/* }}} */
#endif