Files
leetcode/include/solution/290.h
2025-07-13 14:06:19 +08:00

12 lines
176 B
C

#ifndef INC_290_H
#define INC_290_H
#ifdef __cplusplus
extern "C"
{
#endif
#include <stdbool.h>
bool wordPattern(char *pattern, char *s);
#ifdef __cplusplus
}
#endif
#endif