Changeset 7258c6a in buchla-68k for include/memory.h


Ignore:
Timestamp:
07/09/2017 04:45:34 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
8618599
Parents:
0292fbb
Message:

Use standard integer types.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • include/memory.h

    r0292fbb r7258c6a  
    66*/
    77
    8 extern  void    *memccpy(void *vp1, void *vp2, char c, int n);
    9 extern  void    *memchr(void *vp, char c, int n);
    10 extern  void    *memcpy(void *vp1, void *vp2, int n);
    11 extern  void    *memset(void *vp, char c, int n);
    12 extern  int     memcmp(void *vp1, void *vp2, int n);
    13 extern  void    *memsetw(void *vp, short s, short n);
    14 extern  void    *memcpyw(void *vp1, void *vp2, int n);
    15 extern  int     memcmpu(void *vp1, void *vp2, int n);
     8extern  void    *memccpy(void *vp1, void *vp2, int8_t c, int16_t n);
     9extern  void    *memchr(void *vp, int8_t c, int16_t n);
     10extern  void    *memcpy(void *vp1, void *vp2, int16_t n);
     11extern  void    *memset(void *vp, int8_t c, int16_t n);
     12extern  int16_t memcmp(void *vp1, void *vp2, int16_t n);
     13extern  void    *memsetw(void *vp, int16_t s, int16_t n);
     14extern  void    *memcpyw(void *vp1, void *vp2, int16_t n);
     15extern  int16_t memcmpu(void *vp1, void *vp2, int16_t n);
     16
     17
Note: See TracChangeset for help on using the changeset viewer.