beautypg.com

Isgraph, Islower, Isprint – Zilog Z8F0130 User Manual

Page 467: Isgraph islower isprint

background image

UM013037-1212

isgraph

Zilog Developer Studio II – Z8 Encore!

User Manual

443

Synopsis

#include

int isdigit(int c);

Example

int r;

char c='4';

r=isdigit(c);

isgraph

Tests for any printing character except space (' ').

Synopsis

#include

int isgraph(int c);

Example

int r;

char c='';

r=isgraph(c);

islower

Tests for any lowercase letter 'a' to 'z'.

Synopsis

#include

int islower(int c);

Example

int r;

char c='a';

r=islower(c);

isprint

Tests for any printing character including space (' ').

Synopsis

#include

int isprint(int c);