// cctype standard header -*-c++-*-
// Copyright 2009-2017 IAR Systems AB.
#ifndef _CCTYPE_
#define _CCTYPE_

#ifndef _SYSTEM_BUILD
  #pragma system_include
#endif

#include <ctype.h>

namespace std {
  using ::isalnum; using ::isalpha; using ::iscntrl;
  using ::isdigit; using ::isgraph; using ::islower;
  using ::isprint; using ::ispunct; using ::isspace;
  using ::isupper; using ::isxdigit; using ::tolower;
  using ::toupper;
  #if !_DLIB_ONLY_C89
    using ::isblank;
  #endif
} /* namespace std */
#endif /* _CCTYPE_ */

/*
 * Copyright (c) by P.J. Plauger. All rights reserved.
 * Consult your license regarding permissions and restrictions.
V6.50:0576 */
