Zilog ZUSBOPTS Uživatelský manuál Strana 450

  • Stažení
  • Přidat do mých příruček
  • Tisk
  • Strana
    / 520
  • Tabulka s obsahem
  • ŘEŠENÍ PROBLÉMŮ
  • KNIHY
  • Hodnocené. / 5. Na základě hodnocení zákazníků
Zobrazit stránku 449
Standard Functions UM017105-0511
422
Zilog Developer Studio II – ZNEO™
User Manual
ispunct
Tests for any printing character except space (' ') or a character for which isalnum is true.
Synopsis
#include <ctype.h>
int ispunct(int c);
Example
int r;
char c='a';
r=ispunct(c);
isspace
Tests for the following white-space characters: space (' '), form feed ('\f'), new line ('\n'),
carriage return ('\r'), horizontal tab ('\t'), or vertical tab ('\v').
Synopsis
#include <ctype.h>
int isspace(int c);
Example
int r;
char c='';
r=isspace(c);
isupper
Tests for any uppercase letter 'A' to 'Z'.
Synopsis
#include <ctype.h>
int isupper(int c);
Example
int r;
char c='a';
r=isupper(c);
Zobrazit stránku 449
1 2 ... 445 446 447 448 449 450 451 452 453 454 455 ... 519 520

Komentáře k této Příručce

Žádné komentáře