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