ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/PDL-Audio/sndlib/audinfo.c
Revision: 1.1
Committed: Tue Dec 28 01:05:16 2004 UTC (19 years, 5 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-1_1, rel-1_2, HEAD
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 /* audinfo decribes the current audio hardware state */
2    
3     #if defined(HAVE_CONFIG_H)
4     #include "config.h"
5     #endif
6    
7     #include <math.h>
8     #include <stdio.h>
9     #include <stdlib.h>
10     #if (defined(NEXT) || (defined(HAVE_LIBC_H) && (!defined(HAVE_UNISTD_H))))
11     #include <libc.h>
12     #else
13     #if (!(defined(_MSC_VER))) && (!(defined(MPW_C)))
14     #include <unistd.h>
15     #endif
16     #include <string.h>
17     #endif
18    
19     #include "sndlib.h"
20    
21     int main(int argc, char *argv[])
22     {
23     initialize_sndlib();
24     describe_audio_state();
25     return(0);
26     }