arc/src/agent.c

38 lines
540 B
C

/******************************************************************************
*
* Copyright (c) 2017-2019 by Löwenware Ltd
* Please, refer LICENSE file for legal information
*
******************************************************************************/
/**
* @file agent.c
* @author Ilja Kartašov <ik@lowenware.com>
* @brief
*
* @see https://lowenware.com/
*/
#include "agent.h"
int
agent_init(void)
{
return 0;
}
void
agent_release(void)
{
}
int
agent_run_cycle(void)
{
return 1;
}