INGOR
Loading...
Searching...
No Matches
ytLog.h
1/*
2 util/ytLog.{h,c} : Logging routings.
3 Copyright (C) 2023, Yoshinori Tamada <tamada A T ytlab.jp>
4 All rights reserved.
5*/
6
7#ifndef __YTLIB_LOG_H
8#define __YTLIB_LOG_H
9
10#include "lang/ytValue.h"
11
12#define ytLog_FATAL_ERROR (0x40000000)
13
14void ytLog_err(int rank, int code, ytObject * obj, ...);
15void ytLog_errf(int code, const char * format, ...);
16
17ytObject * ytLog_s(const char * str);
18
19#endif /*__YTLIB_LOG_H */
The basis class.