예제 #1
0
const char*
ocparamlookup(OCstate* state, const char* key)
{
    const char* value = NULL;
    if(state == NULL || key == NULL || state->uri == NULL) return NULL;
    if(!ocurilookup(state->uri,key,&value))
	value = NULL;
    return value;
}
예제 #2
0
const char*
ocparamlookup(OCstate* state, const char* key)
{
    if(state == NULL || key == NULL || state->uri == NULL) return NULL;
    return ocurilookup(state->uri,key);
}