mirror of
https://github.com/richgel999/ufo_data.git
synced 2025-01-11 23:49:31 -05:00
13 lines
164 B
C
13 lines
164 B
C
|
#pragma once
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
// Input should be lowercase, plain ASCII only.
|
||
|
int stem(char* p, int i, int j);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|