diff options
Diffstat (limited to 'db/clib/isprint.c')
-rw-r--r-- | db/clib/isprint.c | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/db/clib/isprint.c b/db/clib/isprint.c deleted file mode 100644 index 4e5d4f04c..000000000 --- a/db/clib/isprint.c +++ /dev/null @@ -1,28 +0,0 @@ -/*- - * See the file LICENSE for redistribution information. - * - * Copyright (c) 2005,2007 Oracle. All rights reserved. - * - * $Id: isprint.c,v 1.4 2007/05/17 15:14:54 bostic Exp $ - */ - -#include "db_config.h" - -#include "db_int.h" - -/* - * isprint -- - * - * PUBLIC: #ifndef HAVE_ISPRINT - * PUBLIC: int isprint __P((int)); - * PUBLIC: #endif - */ -int -isprint(c) - int c; -{ - /* - * Depends on ASCII character values. - */ - return ((c >= ' ' && c <= '~') ? 1 : 0); -} |