source: buchla-68k/libsm/memchr.c

Last change on this file was b28a12e, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Zero redundant declarations.

  • Property mode set to 100644
File size: 504 bytes
Line 
1/*
2 =============================================================================
3 memchr.c -- search a string for a character
4 Version 1 -- 1987-06-12
5
6 Return the ptr in vp at which the character c appears;
7 NULL if not found in n chars; don't stop at \0.
8 =============================================================================
9*/
10
11#include "ram.h"
12
13void *memchr(void *vp, int8_t c, int16_t n)
14{
15 int8_t *cp = vp;
16
17 while (--n >= 0)
18 if (*cp++ == c)
19 return(--cp);
20
21 return((void *)0);
22}
Note: See TracBrowser for help on using the repository browser.