Resident Evil 5

Páginas: 14 (3416 palabras) Publicado: 1 de noviembre de 2012
STREAM.H
Declares the C++ (version 1.2) stream classes for use with stdio FILE
structures. Provided for compatibility with C++ version 1.2.

If you plan to convert to C++ version 2.0, use IOSTREAM.H and read the
"Using C++ Streams" chapter in the Programmer's Guide.

Includes: STDIO.H

string.h ³ Declares several string- and memory-manipulation routines.

Ý_fmemccpy, _fmemcpy,Þ<MEM.H, STRING.H>
Ýmemccpy, memcpy, Þ
Ýmemmove Þ
ßßßßßßßßßßßßßßßßßßßßßß
Copies a block of n bytes from src to dest

Declaration:
þ void *memccpy(void *dest, const void *src, int c, size_t n);
þ void *memcpy (void *dest, const void *src, size_t n);
þ void *memmove(void *dest, const void *src, size_t n);

þ void far * far _fmemccpy(void far *dest,const void far *src,
int c, size_t n);
þ void far * far _fmemcpy (void far *dest, const void far *src,
size_t n);

Remarks:
Each of these functions copies a block of n bytes from src to dest.

þ With memccpy, the copying stops as soon as either of the following
occurs:
þ the character c is first copied into dest
þ n bytes have been copied into dest

þ With memcpy, ifsrc and dest overlap, the behavior is undefined.

þ With memmove, even when the src and dest blocks overlap, bytes in the
overlapping locations are copied correctly.

Return Value:
þ If c was copied, memccpy returns a
pointer to the byte in dest immediately
following c.
þ Otherwise, memccpy returns null.
þ memcpy and memmove return dest.

_fmemchr,Þ
Ýmemchr Þ<MEM.H, STRING.H>
ßßßßßßßßßßß
Searches n bytes for character c

Declaration:
þ void *memchr (const void *s, int c, size_t n);
þ void far * far _fmemchr(const void far *s, int c, size_t n);

Remarks:
memchr searches the first n bytes of the block *s for character c.

_fmemcmp, _fmemicmp, Þ <MEM.H, STRING.H>
Ýmemcmp, memicmp Þßßßßßßßßßßßßßßßßßßßßßßß
þ memcmp compares the first n bytes of strings s1 and s2
þ memicmp compares the first n bytes of strings s1 and s2, ignoring case

Declaration:
þ int memcmp (const void *s1, const void *s2, size_t n);
þ int memicmp(const void *s1, const void *s2, size_t n);
þ int far _fmemcmp (const void far *s1, const void far *s2, size_t n);
þ int far _fmemicmp(const void far *s1, const void far *s2,size_t n);

Remarks:
þ memcmp compares the first n bytes of the blocks s1 and s2 as unsigned
chars.

þ memicmp compares the first n bytes of the blocks s1 and s2, ignoring
character case (upper or lower).

_fmemset,Þ
Ýmemset Þ <MEM.H, STRING.H>
ßßßßßßßßßßß
Sets n bytes of s to byte c

Declaration:
þ void *memset (void *s, int c, size_t n);
þ void far *far _fmemset(void far *s, int c, size_t n);

Remarks:
memset sets the first n bytes of the array s to the character c.

_fstrcat,Þ
Ýstrcat Þ <STRING.H>
ßßßßßßßßßßß
Appends one string to another

Declaration:
þ char *strcat(char *dest, const char *src);
þ char far * far _fstrcat(char far *dest, const char far *src);

Remarks:
strcat appends acopy of src to the end of dest. The length of the
resulting string is strlen(dest) + strlen(src).

_fstrcat is the far version.

_fstrchr,Þ <STRING.H>
Ý strchr Þ
ßßßßßßßßßßß
Scans a string for the first occurence of a given character

Declaration:
þ char *strchr(const char *s, int c);
þ char far * far _fstrchr(const char far *s, int c);

Remarks:strchr scans a string in the forward direction, looking for a specific
character.

_fstrchr is the far version.

_fstricmp, _fstrcmp, Þ <STRING.H>
Ýstrcmp, strcmpi, stricmp Þ
ßßßßßßßßßßßßßßßßßßßßßßßßßßßß
þ _fstrcmp and strcmp compare two strings
þ strcmpi (a macro) compares two strings without case sensitivity
þ _fstricmp and stricmp...
Leer documento completo

Regístrate para leer el documento completo.

Estos documentos también te pueden resultar útiles

  • Emblemas resident evil 5
  • Resident evil 5
  • Resident evil 5
  • Como obtener todos los emblemas del resident evil 5
  • Resident evil 5
  • Resident Evil 5
  • Resident Evil Vol. 5
  • Resident Evil 5

Conviértase en miembro formal de Buenas Tareas

INSCRÍBETE - ES GRATIS