mirror of
https://github.com/joel16/VitaShell.git
synced 2024-11-23 03:39:39 +00:00
6 lines
104 B
C
6 lines
104 B
C
|
#ifndef __BM_H__
|
||
|
#define __BM_H__
|
||
|
|
||
|
char * boyer_moore(const char *haystack, const char *needle);
|
||
|
|
||
|
#endif
|