MCPcopy Create free account
hub / github.com/numpy/numpy / NumPyOS_ascii_isalpha

Function NumPyOS_ascii_isalpha

numpy/core/src/common/numpyos.c:360–364  ·  view source on GitHub ↗

* NumPyOS_ascii_isalpha: * * Same as isalpha under C locale */

Source from the content-addressed store, hash-verified

358 * Same as isalpha under C locale
359 */
360static int
361NumPyOS_ascii_isalpha(char c)
362{
363 return (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z');
364}
365
366
367/*

Callers 1

NumPyOS_ascii_isalnumFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected