forked from antirez/hping
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmemstr.c
More file actions
27 lines (23 loc) · 646 Bytes
/
memstr.c
File metadata and controls
27 lines (23 loc) · 646 Bytes
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
/*
* $smu-mark$
* $name: memstr.c$
* $author: Salvatore Sanfilippo <antirez@invece.org>$
* $copyright: Copyright (C) 1999 by Salvatore Sanfilippo$
* $license: This software is under GPL version 2 of license$
* $date: Fri Nov 5 11:55:48 MET 1999$
* $rev: 4$
*/
/* $Id: memstr.c,v 1.2 2003/09/01 00:22:06 antirez Exp $ */
#include <string.h>
#include <stdlib.h> /* NULL macro */
char *memstr(char *haystack, char *needle, int size)
{
char *p;
char needlesize = strlen(needle);
for (p = haystack; p <= (haystack-needlesize+size); p++)
{
if (memcmp(p, needle, needlesize) == 0)
return p; /* found */
}
return NULL;
}