Changeset 5c13d64 in buchla-68k for include


Ignore:
Timestamp:
07/09/2017 01:36:31 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
0292fbb
Parents:
002f873
Message:

Use void pointers for mem*() functions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • include/memory.h

    r002f873 r5c13d64  
    66*/
    77
    8 extern  char    *memccpy(char *s1, char *s2, char c, int n);
    9 extern  char    *memchr(char *sp, char c, int n);
    10 extern  char    *memcpy(char *s1, char *s2, int n);
    11 extern  char    *memset(char *sp, char c, int n);
    12 extern  int     memcmp(char *s1, char *s2, int n);
    13 extern  short   *memsetw(short *sp, short w, short n);
    14 extern  short   *memcpyw(short *s1, short *s2, int n);
    15 extern  int     memcmpu(char *s1, char *s2, int n);
     8extern  void    *memccpy(void *vp1, void *vp2, char c, int n);
     9extern  void    *memchr(void *vp, char c, int n);
     10extern  void    *memcpy(void *vp1, void *vp2, int n);
     11extern  void    *memset(void *vp, char c, int n);
     12extern  int     memcmp(void *vp1, void *vp2, int n);
     13extern  void    *memsetw(void *vp, short s, short n);
     14extern  void    *memcpyw(void *vp1, void *vp2, int n);
     15extern  int     memcmpu(void *vp1, void *vp2, int n);
Note: See TracChangeset for help on using the changeset viewer.