Subversion Repositories Kolibri OS

Rev

Rev 6058 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6058 Rev 6216
Line 103... Line 103...
103
	if (ESBYTE[_in]!='/') return false;
103
	if (ESBYTE[_in]!='/') return false;
104
	_in++;
104
	_in++;
105
	if(!strncmp(_in,"rd/",3)) return true;
105
	if(!strncmp(_in,"rd/",3)) return true;
106
	if(!strncmp(_in,"fd/",3)) return true;
106
	if(!strncmp(_in,"fd/",3)) return true;
107
	if(!strncmp(_in,"hd/",3)) return true;
107
	if(!strncmp(_in,"hd",2)) return true;
108
	if(!strncmp(_in,"bd/",3)) return true;
108
	if(!strncmp(_in,"bd",2)) return true;
109
	if(!strncmp(_in,"cd/",3)) return true;
109
	if(!strncmp(_in,"cd",2)) return true;
110
	if(!strncmp(_in,"sys/",4)) return true;
110
	if(!strncmp(_in,"sys/",4)) return true;
111
	if(!strncmp(_in,"tmp/",4)) return true;
111
	if(!strncmp(_in,"tmp/",4)) return true;
112
	if(!strncmp(_in,"usbhd",6)) return true;
112
	if(!strncmp(_in,"usbhd",5)) return true;
113
	if(!strncmp(_in,"kolibrios",10)) return true;
113
	if(!strncmp(_in,"kolibrios",10)) return true;
114
	return false;
114
	return false;
115
}
115
}
116
 
116
 
Line 117... Line 117...
117
int check_is_the_url_absolute(dword _in)
117
int check_is_the_url_absolute(dword _in)