ufo_data/stem.h
Rich Geldreich 44389e2034 new file
2023-10-05 14:07:20 -04:00

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