From 9fb34aa21673e8303807fdd530145635732bc485 Mon Sep 17 00:00:00 2001 From: Aleksander Kaminski Date: Wed, 8 Nov 2023 11:58:26 +0100 Subject: [PATCH] ctype: Fix typo DONE: RTOS-673 --- include/ctype.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ctype.h b/include/ctype.h index f2ebe716..50582d9c 100644 --- a/include/ctype.h +++ b/include/ctype.h @@ -36,7 +36,7 @@ int isupper(int c); /* This function checks whether the passed character is alphabetic. */ int isalpha(int c); #define __isalpha(c) (((islower(c) != 0) || (isupper(c) != 0)) ? 1 : 0) -#define isaplha(c) __isalpha(c) +#define isalpha(c) __isalpha(c) /* This function checks whether the passed character is control character. */