summaryrefslogtreecommitdiff
path: root/cesar/cp2/fsm/src/fsm.c
blob: 04ee3e5bf9b5046cb82d66196743d19a48cbc213 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/* Cesar project {{{
 *
 * Copyright (C) 2008 Spidcom
 *
 * <<<Licence>>>
 *
 * }}} */
/**
 * \file    cp2/fsm/src/fsm.c
 * \brief   FSM engine.
 * \ingroup cp2_fsm
 */
#include "common/std.h"

#include "fsm.h"
#include "inc/tables.h"
#include "inc/context.h"

void
cp_fsm_init (cp_t *ctx)
{
}

void
cp_fsm_uninit (cp_t *ctx)
{
}

void
cp_fsm_process (cp_t *ctx)
{
}

void
cp_fsm_post (cp_t *ctx, cp_fsm_event_t *event)
{
}

void
cp_fsm_branch (cp_t *ctx, cp_fsm_branch_t branch)
{
}