代码搜索:enum
找到约 10,000 项符合「enum」的源代码
代码结果 10,000
www.eeworm.com/read/440906/1782785
c 20010202-1.c
/* { dg-do compile { target i?86-*-* sparc*-*-* } } */
/* { dg-options "-O2" } */
typedef enum { false, true } __attribute__ ((packed)) boolean;
typedef struct {
enum {
A0 = 0, A1 = 1, A2 = 2
www.eeworm.com/read/433911/1879729
enumcount
From: Gianni Mariani
Date: 26 Jul 2003 04:52:43 GMT
Newsgroups: comp.lang.c++
Subject: Re: enum count
Clive wrote:
> If you have an enum, is there any way during executio
www.eeworm.com/read/395229/2446432
h nf_conntrack_ftp.h
#ifndef _NF_CONNTRACK_FTP_H
#define _NF_CONNTRACK_FTP_H
/* FTP tracking. */
/* This enum is exposed to userspace */
enum nf_ct_ftp_type
{
/* PORT command from client */
NF_CT_FTP_PORT,
/* PASV res
www.eeworm.com/read/395229/2447127
h nf_conntrack_ftp.h
#ifndef _NF_CONNTRACK_FTP_H
#define _NF_CONNTRACK_FTP_H
/* FTP tracking. */
/* This enum is exposed to userspace */
enum nf_ct_ftp_type
{
/* PORT command from client */
NF_CT_FTP_PORT,
/* PASV res
www.eeworm.com/read/395229/2447594
h ip_conntrack_ftp.h
#ifndef _IP_CONNTRACK_FTP_H
#define _IP_CONNTRACK_FTP_H
/* FTP tracking. */
/* This enum is exposed to userspace */
enum ip_ct_ftp_type
{
/* PORT command from client */
IP_CT_FTP_PORT,
/* PASV res
www.eeworm.com/read/395229/2448214
h nf_conntrack_ftp.h
#ifndef _NF_CONNTRACK_FTP_H
#define _NF_CONNTRACK_FTP_H
/* FTP tracking. */
/* This enum is exposed to userspace */
enum nf_ct_ftp_type
{
/* PORT command from client */
NF_CT_FTP_PORT,
/* PASV res
www.eeworm.com/read/383868/2610636
h nf_conntrack_ftp.h
#ifndef _NF_CONNTRACK_FTP_H
#define _NF_CONNTRACK_FTP_H
/* FTP tracking. */
/* This enum is exposed to userspace */
enum ip_ct_ftp_type
{
/* PORT command from client */
IP_CT_FTP_PORT,
/* PASV res
www.eeworm.com/read/382594/2632858
enumcount
From: Gianni Mariani
Date: 26 Jul 2003 04:52:43 GMT
Newsgroups: comp.lang.c++
Subject: Re: enum count
Clive wrote:
> If you have an enum, is there any way during executio
www.eeworm.com/read/350730/3117070
h command.h
/*
* vivi/include/command.h
*
*/
#ifndef _VIVI_COMMAND_H_
#define _VIVI_COMMAND_H_
long paramoldvalue;
int argc;
enum ParseState {
PS_WHITESPACE,
PS_TOKEN,
PS_STRING,
PS_ESCAPE
};
enum Parse
www.eeworm.com/read/295361/8168063
c krx12312.c
/*
* C comment stripper.
*
* Strips comments from C or C++ code.
*/
#include
enum state_t { normal, string, character, block_comment, line_comment};
enum token_t { none, bac