summaryrefslogtreecommitdiff
path: root/src/libdisfluid/disfluid-ui.h
blob: 3555664d5b2beec75fde6d536f3cf2cad552c5c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef DISFLUID_UI_INCLUDED
# define DISFLUID_UI_INCLUDED

static inline const char *greet_world (void);
static inline const char *metaphor_name (void);

# include "disfluid-init.h"

static inline const char *
greet_world (void)
{
  ensure_init ();
  return _("Hello, world!");
}

static inline const char *
metaphor_name (void)
{
  ensure_init ();
  return _("Experiences");
}

#endif /* DISFLUID_UI_INCLUDED */