[BACK]Return to charset.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / less

File: [local] / src / usr.bin / less / charset.h (download)

Revision 1.4, Thu May 9 10:53:59 2019 UTC (5 years, 1 month ago) by schwarze
Branch: MAIN
Changes since 1.3: +0 -5 lines

delete five unused macros

/*
 * Copyright (C) 1984-2012  Mark Nudelman
 * Modified for use with illumos by Garrett D'Amore.
 * Copyright 2014 Garrett D'Amore <garrett@damore.org>
 *
 * You may distribute under the terms of either the GNU General Public
 * License or the Less License, as specified in the README file.
 *
 * For more information, see the README file.
 */

#define	IS_ASCII_OCTET(c)	(((c) & 0x80) == 0)
#define	IS_UTF8_TRAIL(c)	(((c) & 0xC0) == 0x80)
#define	IS_UTF8_INVALID(c)	(((c) & 0xFE) == 0xFE)
#define	IS_UTF8_LEAD(c)		(((c) & 0xC0) == 0xC0 && !IS_UTF8_INVALID(c))