this unrelated and erroneus change was applied on my previous commit, reverted

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18875 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reynaldo 2006-07-01 04:55:54 +00:00
parent 5b4ec50d44
commit f86db2816c
1 changed files with 4 additions and 1 deletions

View File

@ -25,7 +25,6 @@
#endif
#define ERR ((void *) -1)
#define eol(x) ((x)=='\r' || (x)=='\n' || (x)=='\0')
#ifdef USE_ICONV
#include <iconv.h>
@ -68,6 +67,10 @@ int sub_format=SUB_INVALID;
unsigned long previous_sub_end;
#endif
static int eol(char p) {
return (p=='\r' || p=='\n' || p=='\0');
}
/* Remove leading and trailing space */
static void trail_space(char *s) {
int i = 0;