2008-11-06 00:05:24 +00:00
|
|
|
/*
|
2013-04-24 09:35:02 -04:00
|
|
|
* Copyright (c) 2008, 2010-2011, 2013
|
|
|
|
* Todd C. Miller <Todd.Miller@courtesan.com>
|
2008-11-06 00:05:24 +00:00
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
2010-08-30 09:14:41 -04:00
|
|
|
|
2013-04-01 10:19:26 -04:00
|
|
|
#ifndef HAVE_ISBLANK
|
|
|
|
|
2010-08-30 09:14:41 -04:00
|
|
|
#include <sys/types.h>
|
|
|
|
|
2014-07-22 14:25:16 -06:00
|
|
|
#include "sudo_compat.h"
|
2008-11-06 00:05:24 +00:00
|
|
|
|
|
|
|
#undef isblank
|
|
|
|
int
|
2010-02-27 09:23:25 -05:00
|
|
|
isblank(int ch)
|
2008-11-06 00:05:24 +00:00
|
|
|
{
|
2011-01-24 15:15:18 -05:00
|
|
|
return ch == ' ' || ch == '\t';
|
2008-11-06 00:05:24 +00:00
|
|
|
}
|
2013-04-01 10:19:26 -04:00
|
|
|
#endif /* HAVE_ISBLANK */
|