Menu

[7c54b3]: / joe / blocks.h  Maximize  Restore  History

Download this file

55 lines (47 with data), 1.5 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
* Fast block move/copy subroutines
*
* These exist because memmove on older UNIXs was really slow.
*
* Copyright
* (C) 1992 Joseph H. Allen
*
* This file is part of JOE (Joe's Own Editor)
*/
/* char *mmove(char *d,char *s,int sz); Copy 'sz' bytes from 's' to 'd'.
* Chooses either mbkwd or mfwrd to do this such that the data won't get
* clobbered.
*/
void *mmove(void *d, const void *s, ptrdiff_t sz);
/* char *mset(char *d,char c,int sz); Set 'sz' bytes at 'd' to 'c'.
* If 'sz'==0 nothing happens
* Return original value of 'd'
*/
char *mset(char *dest, char c, ptrdiff_t sz);
/* int *msetI(int *d,int c,int sz); Set 'sz' ints at 'd' to 'c'.
* If 'sz'==0 nothing happens
* Returns orininal value of 'd'
*/
int *msetI(int *dest, int c, ptrdiff_t sz);
/* int *msetI(int *d,int c,int sz); Set 'sz' ints at 'd' to 'c'.
* If 'sz'==0 nothing happens
* Returns orininal value of 'd'
*/
ptrdiff_t *msetD(ptrdiff_t *dest, ptrdiff_t c, ptrdiff_t sz);
/* void **msetP(void **d,void *c,int sz); Set 'sz' pointers at 'd' to 'c'.
* If 'sz'==0 nothing happens
* Returns orininal value of 'd'
*/
void **msetP(void **dest, void *c, ptrdiff_t sz);
/* int mcnt(char *blk,char c,ptrdiff_t size);
*
* Count the number of occurances a character appears in a block
*/
ptrdiff_t mcnt(const char *blk, char c, ptrdiff_t size);
#ifdef junk
/* char *mchr(char *s,char c);
*
* Return address of first 'c' following 's'.
*/
char *mchr(char *s, char c);
#endif
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.