Zilog ZUSBOPTS Bedienungsanleitung Seite 449

  • Herunterladen
  • Zu meinen Handbüchern hinzufügen
  • Drucken
  • Seite
    / 520
  • Inhaltsverzeichnis
  • FEHLERBEHEBUNG
  • LESEZEICHEN
  • Bewertet. / 5. Basierend auf Kundenbewertungen
Seitenansicht 448
UM017105-0511 Standard Functions
Zilog Developer Studio II – ZNEO™
User Manual
421
isgraph
Tests for any printing character except space (' ').
Synopsis
#include <ctype.h>
int isgraph(int c);
Example
int r;
char c='';
r=isgraph(c);
islower
Tests for any lowercase letter 'a' to 'z'.
Synopsis
#include <ctype.h>
int islower(int c);
Example
int r;
char c='a';
r=islower(c);
isprint
Tests for any printing character including space (' ').
Synopsis
#include <ctype.h>
int isprint(int c);
Example
int r;
char c='1';
r=isprint(c);
Seitenansicht 448
1 2 ... 444 445 446 447 448 449 450 451 452 453 454 ... 519 520

Kommentare zu diesen Handbüchern

Keine Kommentare