arc/src/agent.c

45 lines
643 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 "surgard.h"
#include "agent.h"
int
agent_init(void)
{
return 0;
}
void
agent_release(void)
{
}
int
agent_run_cycle(void)
{
int result = 1, rc;
if (!(rc = surgard_run_cycle())) {
result = rc;
}
return result;
}