mirror of
https://github.com/saymrwulf/uhd.git
synced 2026-05-16 21:10:10 +00:00
* Wrapped uhd::device_addrs_t, added find functions for multi_usrp, multi_usrp_clock * Replaced getopt with public domain implementation * Minor bugfixes
19 lines
422 B
C
19 lines
422 B
C
/*
|
|
* This header is for a function released into the public domain
|
|
* by AT&T in 1985. See the newsgroup posting:
|
|
*
|
|
* Newsgroups: mod.std.unix
|
|
* Subject: public domain AT&T getopt source
|
|
* Date: 3 Nov 85 19:34:15 GMT
|
|
*/
|
|
#ifndef _GETOPT_H_
|
|
#define _GETOPT_H_
|
|
|
|
extern int optarr;
|
|
extern int optind;
|
|
extern int optopt;
|
|
extern char* optarg;
|
|
|
|
int getopt(int argc, char **argv, char *opts);
|
|
|
|
#endif /* _GETOPT_H_ */
|