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 See LICENSE.txt for details of the licensing agreement.
7*/
8
9#ifndef __YTLIB_LOG_H
10#define __YTLIB_LOG_H
11
12#include "lang/ytValue.h"
13
14#define ytLog_FATAL_ERROR (0x40000000)
15
16void ytLog_err(int rank, int code, ytObject * obj, ...);
17void ytLog_errf(int code, const char * format, ...);
18
19ytObject * ytLog_s(const char * str);
20
21#endif /*__YTLIB_LOG_H */
The basis class.