X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?p=YACASL2.git;a=blobdiff_plain;f=include%2Fcmem.h;h=2411980260f8bee8a1b8465830f7e612e6c75788;hp=134baa81c66940ca6fc5941bf2bcdd3d0be73718;hb=HEAD;hpb=1474b863964dc39064d70b7204a2c60ec9bffe50 diff --git a/include/cmem.h b/include/cmem.h index 134baa8..2411980 100644 --- a/include/cmem.h +++ b/include/cmem.h @@ -70,9 +70,28 @@ char *strndup_chk(const char *s, size_t len, const char *tag); /** * @brief 文字列の末尾から、改行と空白とタブを削除する * - * @return 末尾から改行と空白とタブを削除した文字列 + * @return なし + * + * @param s 文字列 + */ +void strip_end(char *s); + +/** + * @brief 文字列から「'」以降の文字列をCASL IIのコメントとして削除する。「''」の場合は除く + * + * @return なし * * @param s 文字列 */ -char *strip_end(char *s); +void strip_casl2_comment(char *s); + +/** + * @brief 逆にした文字列を返す + * + * @return 逆にしたした文字列 + * + * @param s 文字列 + */ +char *strrev(const char *s); + #endif