SW006013 Microchip Technology, SW006013 Datasheet - Page 21

MPLAB C Compiler For DsPIC DSCs

SW006013

Manufacturer Part Number
SW006013
Description
MPLAB C Compiler For DsPIC DSCs
Manufacturer
Microchip Technology
Series
DsPIC30F/33Fr
Type
MPLAB® C Compilerr
Datasheet

Specifications of SW006013

Supported Families
DsPIC30F, DsPIC33F
Core Architecture
DsPIC
Kit Contents
Software And Docs
Mcu Supported Families
DsPIC30F And DsPIC33F
Tool Function
Compiler
Tool Type
Compiler
Processor Series
dsPIC
Lead Free Status / RoHS Status
na
For Use With/related Products
dSPIC DSCs
Lead Free Status / Rohs Status
Lead free / RoHS Compliant
© 2008 Microchip Technology Inc.
isgraph (Continued)
islower
Description:
Include:
Prototype:
Argument:
Return Value:
Remarks:
Example:
}
Output:
3 is a graphical character
# is a graphical character
a space is NOT a graphical character
Test for a lower case alphabetic character.
<ctype.h>
int islower (int c);
c
Returns a non-zero integer value if the character is a lower case alpha-
betic character; otherwise, returns zero.
A character is considered to be a lower case alphabetic character if it is
in the range of ‘a’-‘z’.
#include <ctype.h> /* for islower */
#include <stdio.h> /* for printf */
int main(void)
{
}
ch = '3';
if (isgraph(ch))
else
ch = '#';
if (isgraph(ch))
else
ch = ' ';
if (isgraph(ch))
else
int ch;
ch = 'B';
if (islower(ch))
else
ch = 'b';
if (islower(ch))
else
printf("a space is NOT a graphical character\n");
printf("3 is a graphical character\n");
printf("3 is NOT a graphical character\n");
printf("# is a graphical character\n");
printf("# is NOT a graphical character\n");
printf("a space is a graphical character\n");
printf("B is lower case\n");
printf("B is NOT lower case\n");
printf("b is lower case\n");
printf("b is NOT lower case\n");
character to test
DS51456E-page 17

Related parts for SW006013