Searched refs:pszLine (Results 1 - 2 of 2) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/wlags49_h2/
H A Dwl_profile.h84 void ParseConfigLine( char *pszLine, char **ppszLVal, char **ppszRVal );
H A Dwl_profile.c893 * pszLine - the line from the config file to parse
902 void ParseConfigLine(char *pszLine, char **ppszLVal, char **ppszRVal) argument
912 size = strlen(pszLine);
916 if (pszLine[0] != '#' && /* skip the line if it is a comment */
917 pszLine[0] != '\n' && /* if it's an empty UNIX line, do nothing */
918 !(pszLine[0] == '\r' && pszLine[1] == '\n') /* if it's an empty MS-DOS line, do nothing */
922 if (pszLine[i] != ' ') {
923 *ppszLVal = &pszLine[i];
929 if (pszLine[
[all...]

Completed in 21 milliseconds