The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/rdma/krping/getopt.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*
    2  * lifted from fs/ncpfs/getopt.c
    3  *
    4  * $FreeBSD$
    5  */
    6 #ifndef _KRPING_GETOPT_H
    7 #define _KRPING_GETOPT_H
    8 
    9 #define OPT_NOPARAM     1
   10 #define OPT_INT         2
   11 #define OPT_STRING      4
   12 struct krping_option {
   13         const char *name;
   14         unsigned int has_arg;
   15         int val;
   16 };
   17 
   18 extern int krping_getopt(const char *caller, char **options, const struct krping_option *opts,
   19                       char **optopt, char **optarg, unsigned long *value);
   20 
   21 #endif /* _KRPING_GETOPT_H */

Cache object: b2ed90384ee394e854095e319b037804


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.