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

#ifndef _SYSTEM_BUILD
  #pragma system_include
#endif

#include <wctype.h>

namespace std {
  using ::wint_t; using ::wctrans_t; using ::wctype_t;

  using ::iswalnum; using ::iswalpha; using ::iswcntrl;
  using ::iswctype; using ::iswdigit; using ::iswgraph;
  using ::iswlower; using ::iswprint; using ::iswpunct;
  using ::iswspace; using ::iswupper; using ::iswxdigit;
  using ::towctrans; using ::towlower; using ::towupper;
  using ::wctrans; using ::wctype;
  #if !_DLIB_ONLY_C89
    using ::iswblank;
  #endif
} /* namespace std */
#endif /* _CWCTYPE_ */

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