_memccpy

I caratteri vengono copiati da un buffer.

void *_memccpy(
   void *dest,
   const void *src,
   int c,
   size_t count 
);

Parametri

  • dest
    Puntatore alla destinazione.

  • src
    Puntatore al database di origine.

  • c
    L'ultimo carattere da copiare.

  • conteggio
    numero di caratteri.

Valore restituito

se il carattere c viene copiato, _memccpy restituisce un puntatore a char in dest l'oggetto immediatamente successivo al carattere.se c non viene copiato, restituisce NULL.

Note

_memccpy la funzione copia 0 o più caratteri di src in dest, arrestandosi quando il carattere c è stato copiato o quando conteggio i caratteri sono stati copiati, qualsiasi versione viene prima nell'.

Nota sulla sicurezza Assicurarsi che il buffer di destinazione sia la stessa dimensione o più grande del buffer di origine.Per ulteriori informazioni, vedere Evitare i sovraccarichi del buffer.

Requisiti

routine

Intestazione di associazione

_memccpy

<memory.h> o <string.h>

Per ulteriori informazioni sulla compatibilità, vedere compatibilità nell'introduzione.

Librerie

Tutte le versioni di Librerie di runtime del linguaggio C.

Esempio

// crt_memccpy.c

#include <memory.h>
#include <stdio.h>
#include <string.h>

char string1[60] = "The quick brown dog jumps over the lazy fox";

int main( void )
{
   char buffer[61];
   char *pdest;

   printf( "Function: _memccpy 60 characters or to character 's'\n" );
   printf( "Source: %s\n", string1 );
   pdest = _memccpy( buffer, string1, 's', 60 );
   *pdest = '\0';
   printf( "Result: %s\n", buffer );
   printf( "Length: %d characters\n", strlen( buffer ) );
}

Output

Function: _memccpy 60 characters or to character 's'
Source: The quick brown dog jumps over the lazy fox
Result: The quick brown dog jumps
Length: 25 characters

Equivalente .NET Framework

Vedere anche

Riferimenti

Modifica del buffer

memchr, wmemchr

memcmp, wmemcmp

memcpy, wmemcpy

memset, wmemset