summaryrefslogtreecommitdiff
path: root/cesar/cp2/cl_interf/test/src/fsm_stub.c
blob: a2f607bd1cc8643a56c06e76913f08e5b6cd4e50 (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
/* Cesar project {{{
 *
 * Copyright (C) 2008 Spidcom
 *
 * <<<Licence>>>
 *
 * }}} */
/**
 * \file    src/fsm_stub.c
 * \brief   « brief description »
 * \ingroup « module »
 *
 * « long description »
 */
#include "common/std.h"
#include "cp2/fsm/fsm.h"

static cp_fsm_event_t fsm_event;

cp_fsm_event_t *
cp_fsm_event_bare_new (cp_t *ctx, cp_fsm_event_type_t type)
{
    return &fsm_event;
}

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