グローバル変数のリファクタリング
[YACASL2.git] / include / cerr.h
index 7265b0e..ee44ee4 100644 (file)
 /* エラーを出力して終了 */
 void *malloc_chk(size_t size, char *tag);
 
+/* callocを実行し、メモリを確保できない場合は */
+/* エラーを出力して終了 */
+void *calloc_chk(size_t nmemb, size_t size, char *tag);
+
+/* malloc_chkを実行してメモリを確保してから、 */
+/* コピーした文字列を返す */
+char *strdup_chk(const char *s, char *tag);
+
 /* エラーの構造体 */
 typedef struct {
     int num;        /* エラー番号 */
@@ -37,6 +45,9 @@ enum {
     CERRMSGSIZE = 70,    /* エラーメッセージのサイズ */
 };
 
+/* エラーの初期化 */
+void cerr_init();
+
 /* エラーリストを作成・追加する */
 bool addcerrlist(int cerrc, CERR cerrv[]);