/****************************************************************************** * * Copyright (c) 2017-2019 by Löwenware Ltd * Please, refer LICENSE file for legal information * ******************************************************************************/ /** * @file agent.c * @author Ilja Kartašov * @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; }