예제 #1
0
char *query_val(struct soap *soap, char **s)
{ char *t = *s;
  if (t && *t == '=')
  { *s = (char*)soap_decode_string(t, strlen(t), t + 1);
    return t;
  }
  return NULL;
}
예제 #2
0
파일: httpget.c 프로젝트: allenway/onvif
char *query_key(struct soap *soap, char **s)
{ char *t = *s;
  (void)soap;
  if (t && *t)
  { *s = (char*)soap_decode_string(t, strlen(t), t + 1);
    return t;
  }
  return *s = NULL;
}