#ifndef __REG_CHAR_H__ #define __REG_CHAR_H__ /* * @author fenrir (https://fenrir.naruoka.org/) * * reg_char.h * 文字全般に関するヘッダ */ #ifdef __cplusplus extern "C"{ #endif char *reg_char_shift(char *string, int index); char *reg_char_unshift(char *string, char *border, int unshift); int reg_char_compare(char *char1, char *char2); #define NULL_CHAR '\0' #ifdef __cplusplus }; #endif #endif /* __REG_CHAR_H__ */