3 memcached_return
memcached_key_test(const char **keys
, size_t *key_length
,
9 for (x
= 0; x
< number_of_keys
; x
++)
13 rc
= memcached_validate_key_length(*(key_length
+ x
), false);
14 if (rc
!= MEMCACHED_SUCCESS
)
19 for (y
= 0; y
< *(key_length
+ x
); y
++)
21 if ((isgraph(keys
[x
][y
])) == 0)
22 return MEMCACHED_BAD_KEY_PROVIDED
;
26 return MEMCACHED_SUCCESS
;