Compare commits

..

No commits in common. "7023c513477eca7832f5ae3c6204a7240c1401c0" and "1a76b2032e6d18d9f95d9d0bb98edc26023c8618" have entirely different histories.

4 changed files with 16 additions and 22 deletions

View File

@ -1,4 +1,4 @@
Copyright (c) 2014 - 2020, Přemysl Eric Janouch <p@janouch.name> Copyright (c) 2014 - 2018, Přemysl Eric Janouch <p@janouch.name>
Permission to use, copy, modify, and/or distribute this software for any Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted. purpose with or without fee is hereby granted.

View File

@ -1,17 +1,17 @@
# Public Domain # Public Domain
find_package (PkgConfig REQUIRED) find_package (PkgConfig REQUIRED)
pkg_check_modules (Ncursesw QUIET ncursesw) pkg_check_modules (NCURSESW QUIET ncursesw)
# OpenBSD doesn't provide a pkg-config file # OpenBSD doesn't provide a pkg-config file
set (required_vars Ncursesw_LIBRARIES) set (required_vars NCURSESW_LIBRARIES)
if (NOT Ncursesw_FOUND) if (NOT NCURSESW_FOUND)
find_library (Ncursesw_LIBRARIES NAMES ncursesw) find_library (NCURSESW_LIBRARIES NAMES ncursesw)
find_path (Ncursesw_INCLUDE_DIRS ncurses.h) find_path (NCURSESW_INCLUDE_DIRS ncurses.h)
list (APPEND required_vars Ncursesw_INCLUDE_DIRS) list (APPEND required_vars NCURSESW_INCLUDE_DIRS)
endif (NOT Ncursesw_FOUND) endif (NOT NCURSESW_FOUND)
include (FindPackageHandleStandardArgs) include (FindPackageHandleStandardArgs)
FIND_PACKAGE_HANDLE_STANDARD_ARGS (Ncursesw DEFAULT_MSG ${required_vars}) FIND_PACKAGE_HANDLE_STANDARD_ARGS (NCURSESW DEFAULT_MSG ${required_vars})
mark_as_advanced (Ncursesw_LIBRARIES Ncursesw_INCLUDE_DIRS) mark_as_advanced (NCURSESW_LIBRARIES NCURSESW_INCLUDE_DIRS)

View File

@ -1,10 +1,10 @@
# Public Domain # Public Domain
find_path (Unistring_INCLUDE_DIRS unistr.h) find_path (UNISTRING_INCLUDE_DIRS unistr.h)
find_library (Unistring_LIBRARIES NAMES unistring libunistring) find_library (UNISTRING_LIBRARIES NAMES unistring libunistring)
include (FindPackageHandleStandardArgs) include (FindPackageHandleStandardArgs)
FIND_PACKAGE_HANDLE_STANDARD_ARGS (Unistring DEFAULT_MSG FIND_PACKAGE_HANDLE_STANDARD_ARGS (UNISTRING DEFAULT_MSG
Unistring_INCLUDE_DIRS Unistring_LIBRARIES) UNISTRING_INCLUDE_DIRS UNISTRING_LIBRARIES)
mark_as_advanced (Unistring_LIBRARIES Unistring_INCLUDE_DIRS) mark_as_advanced (UNISTRING_LIBRARIES UNISTRING_INCLUDE_DIRS)

View File

@ -1,7 +1,7 @@
/* /*
* liberty.c: the ultimate C unlibrary * liberty.c: the ultimate C unlibrary
* *
* Copyright (c) 2014 - 2020, Přemysl Eric Janouch <p@janouch.name> * Copyright (c) 2014 - 2018, Přemysl Eric Janouch <p@janouch.name>
* *
* Permission to use, copy, modify, and/or distribute this software for any * Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted. * purpose with or without fee is hereby granted.
@ -2672,12 +2672,6 @@ strncasecmp_ascii (const char *a, const char *b, size_t n)
return 0; return 0;
} }
static bool
iscntrl_ascii (int c)
{
return (c >= 0 && c < 32) || c == 0x7f;
}
static bool static bool
isalpha_ascii (int c) isalpha_ascii (int c)
{ {