diff options
| author | Alexander Pickering <alexandermpickering@gmail.com> | 2018-11-07 18:25:36 -0500 |
|---|---|---|
| committer | Alexander Pickering <alexandermpickering@gmail.com> | 2018-11-07 18:25:36 -0500 |
| commit | a1e4097ce8a417c8b6b6011b0c2deb113c0417f2 (patch) | |
| tree | 9e500354e48dac5ffcbc7352400e9508d033d9d0 /src/kmp.h | |
| parent | b9899c6cbe2f694c9db36e9d4e15c532d10b546f (diff) | |
| download | libctemplates-a1e4097ce8a417c8b6b6011b0c2deb113c0417f2.tar.gz libctemplates-a1e4097ce8a417c8b6b6011b0c2deb113c0417f2.tar.bz2 libctemplates-a1e4097ce8a417c8b6b6011b0c2deb113c0417f2.zip | |
Added const to most chars
Added const qualifier for clarity.
Diffstat (limited to 'src/kmp.h')
| -rw-r--r-- | src/kmp.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,3 +1,3 @@ -void failure(char* pattern, int* f); -int kmp(char* t,size_t tlen, char* p,size_t plen); +void failure(const char* pattern, int* f); +int kmp(const char* t,size_t tlen, const char* p,size_t plen); |
