Files
rpc/port.h
2020-09-08 13:40:45 -07:00

27 lines
485 B
C

/*********************************************************************
* Copyright (c) Intel Corporation 2019 - 2020
* SPDX-License-Identifier: Apache-2.0
**********************************************************************/
#ifndef __PORT_H__
#define __PORT_H__
#include <string.h>
extern "C"
{
// main entry into microlms
extern int main_micro_lms();
}
#ifdef _WIN32
// Windows
#define strncpy strncpy_s
#define strcasecmp _stricmp
#else
// Linux
#endif
#endif