Imported Upstream version 1.1.11
[platform/upstream/cdrkit.git] / wodim / defaults.h
1 /* 
2  * Copyright 2006 Eduard Bloch 
3  *
4  * This code emulates the interface of the original defaults.c file. However,
5  * it improves its behaviour and deals with corner cases: prepended and
6  * trailing spaces on variable and value, no requirement for using TABs
7  * anymore. No requirements to insert dummy values like -1 or "".
8  *
9  */
10 #ifndef _DEFAULTS_H_
11 #define _DEFAULTS_H_
12 extern int      getnum(char *arg, long *valp);
13 void cdr_defaults(char **p_dev_name, int *p_speed, long *p_fifosize, char **p_drv_opts);
14 #endif