Zilog ZUSBOPTS Bedienungsanleitung Seite 475

  • Herunterladen
  • Zu meinen Handbüchern hinzufügen
  • Drucken
  • Seite
    / 520
  • Inhaltsverzeichnis
  • FEHLERBEHEBUNG
  • LESEZEICHEN
  • Bewertet. / 5. Basierend auf Kundenbewertungen
Seitenansicht 474
UM017105-0511 Standard Functions
Zilog Developer Studio II – ZNEO™
User Manual
447
strncpy
Copies not more than n characters from the string pointed to by s2 to the array pointed to
by s1. If copying takes place between objects that overlap, the behavior is undefined.
If the string pointed to by s2 is shorter than n characters, null characters are appended to
the copy in the array pointed to by s1, until n characters in all have been written.
Synopsis
#include <string.h>
char *strncpy(char *s1, const char *s2, size_t n);
Returns
The value of s1.
Example
char *ptr;
char s1[40]="Production";
char s2[]="Languages";
ptr=strncpy(s1,s2,4);
strpbrk
Locates the first occurrence in the string pointed to by s1 of any character from the string
pointed to by s2.
Synopsis
#include <string.h>
char *strpbrk(const char *s1, const char *s2);
Returns
A pointer to the character, or a null pointer if no character from s2 occurs in s1.
Example
char *ptr;
char s1[]="COMPASS";
char s2[]="PASS";
ptr=strpbrk(s1,s2);
Seitenansicht 474
1 2 ... 470 471 472 473 474 475 476 477 478 479 480 ... 519 520

Kommentare zu diesen Handbüchern

Keine Kommentare