aboutsummaryrefslogtreecommitdiff
path: root/lib/libutils/isoc/isupper.c
blob: cbef56f5d0c640e172e08c602680bfe0072c78e8 (plain)
1
2
3
4
5
6
7
8
9
10
// SPDX-License-Identifier: BSD-2-Clause
/*
 * Copyright (c) 2018, Linaro Limited
 */
#include <ctype.h>

int __builtin_isupper(int c)
{
	return (c >= 'A' && c <= 'Z');
}