mirror of
https://github.com/joel16/VitaShell.git
synced 2024-11-26 21:30:45 +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
|