MCPcopy Create free account
hub / github.com/OpenSIPS/opensips / is_pv_valid_char

Function is_pv_valid_char

pvar.c:4971–4977  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4969}
4970
4971static 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
4979char* pv_parse_spec(const str *in, const pv_spec_p e)
4980{

Callers 2

pv_parse_specFunction · 0.85
pv_add_extraFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected