LUMIERA.clone/tests/plugin/examplepluginc/example_plugin.c

30 lines
352 B
C
Raw Normal View History

2008-12-07 08:46:44 +01:00
/*
example_plugin - dummy example plugin
2008-12-07 08:46:44 +01:00
* *****************************************************/
2007-07-18 00:10:02 +02:00
#include <stdio.h>
void hallo (void)
2007-07-18 00:10:02 +02:00
{
printf ("Hallo Welt!\n");
2007-07-18 00:10:02 +02:00
}
void tschuess (const char* m)
2007-07-18 00:10:02 +02:00
{
printf ("Tschuess %s\n", m);
2007-07-18 00:10:02 +02:00
}
void hello (void)
2007-07-18 00:10:02 +02:00
{
printf ("Hello World!\n");
2007-07-18 00:10:02 +02:00
}
void bye (const char* m)
2007-07-18 00:10:02 +02:00
{
printf ("Bye %s\n", m);
2007-07-18 00:10:02 +02:00
}