ctypes.h: Fix typo in macro name iscontrol->iscntrl

This commit is contained in:
Gregory Nutt 2014-01-18 13:22:20 -06:00
parent f947c89f39
commit 006a430029
2 changed files with 4 additions and 2 deletions

View File

@ -6484,3 +6484,5 @@
ostest/Make.defs: Add a configuration option to select the -m32
compiler option when building for a 32-bit target on a native 64-bit
compiler (2014-1-18).
* include/ctype.h: Typo in macro name: iscntrol, not iscontrol (2104-1-17)

View File

@ -1,7 +1,7 @@
/****************************************************************************
* include/ctype.h
*
* Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved.
* Copyright (C) 2007-2009, 2011, 2014 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
@ -102,7 +102,7 @@
*
****************************************************************************/
#define iscontrol(c) (!isprint(c))
#define iscntrl(c) (!isprint(c))
/****************************************************************************
* Name: islower