aboutsummaryrefslogtreecommitdiff
path: root/examples/pbuilder-test/002_sample.c
blob: 632dbb70430033ca9d538025bd8ed81785e98965 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* 
   This is a file used by 002_libfile example.

   test code to test that libecasoundc can be compiled
 */
#include <stdio.h>
#include <ecasoundc.h>

int main()
{
  printf("hello world\n");
  eci_init();
  eci_command("engine-status");
  printf("%s\n", eci_last_string());
  eci_cleanup();
  return 0;
}