| 4969 | } |
| 4970 | |
| 4971 | static int is_pv_valid_char(char c) |
| 4972 | { |
| 4973 | if((c>='0' && c<='9') || (c>='a' && c<='z') || (c>='A' && c<='Z') |
| 4974 | || (c=='_') || (c=='.')) |
| 4975 | return 1; |
| 4976 | return 0; |
| 4977 | } |
| 4978 | |
| 4979 | char* pv_parse_spec(const str *in, const pv_spec_p e) |
| 4980 | { |
no outgoing calls
no test coverage detected