isdigit method

int isdigit(
  1. int _C
)

Implementation

int isdigit(
  int _C,
) {
  return _isdigit(
    _C,
  );
}