2023-04-17 08:56:38 +00:00
|
|
|
/************************************************************//**
|
|
|
|
*
|
|
|
|
* @file: orca.h
|
|
|
|
* @author: Martin Fouilleul
|
|
|
|
* @date: 13/04/2023
|
|
|
|
*
|
|
|
|
*****************************************************************/
|
|
|
|
#ifndef __ORCA_H_
|
|
|
|
#define __ORCA_H_
|
|
|
|
|
|
|
|
#include"util/typedefs.h"
|
|
|
|
#include"util/lists.h"
|
2023-04-17 16:13:07 +00:00
|
|
|
#include"util/memory.h"
|
2023-04-18 16:06:47 +00:00
|
|
|
#include"util/strings.h"
|
2023-04-18 16:43:06 +00:00
|
|
|
#include"util/utf8.h"
|
2023-04-18 16:06:47 +00:00
|
|
|
#include"platform/platform_log.h"
|
2023-04-18 16:36:21 +00:00
|
|
|
#include"platform/platform_assert.h"
|
2023-04-18 08:45:16 +00:00
|
|
|
|
2023-04-18 16:43:06 +00:00
|
|
|
|
2023-04-17 08:56:38 +00:00
|
|
|
#endif //__ORCA_H_
|