代码搜索:queue
找到约 10,000 项符合「queue」的源代码
代码结果 10,000
www.eeworm.com/read/419939/10827701
c queue.c
// queue.c
//
// Generated by C DriverWizard 3.1.0 (Build 1722)
// Requires DDK Only
// File created on 10/23/2004
//
#include "pch.h"
#ifdef CHARSAMPLE_WMI_TRACE
#include "queue.tmh"
#endi
www.eeworm.com/read/349347/10834102
h queue.h
/****************************************Copyright (c)**************************************************
** 广州周立功单片机发展有限公司
** 研 究
www.eeworm.com/read/349347/10834105
c queue.c
/****************************************Copyright (c)**************************************************
** 广州周立功单片机发展有限公司
** 研 究
www.eeworm.com/read/275048/10837761
c queue.c
#include
#define Max 100
void SetNull(front, rear)
int *front, *rear;
{
*front = 0;
*rear = 0;
}
int Empty(front,rear)
int *front, *rear;
{
if(*front == *rear)
return(1)
www.eeworm.com/read/419799/10838009
h queue.h
/****************************************Copyright (c)**************************************************
** 广州周立功单片机发展有限公司
** 研 究
www.eeworm.com/read/419799/10838015
c queue.c
/****************************************Copyright (c)**************************************************
** 广州周立功单片机发展有限公司
** 研 究
www.eeworm.com/read/419765/10839185
i queue.i
// TODO: This could be wrapped.
%ignore QueueGet;
// Kernel-only & unexported symbols
%ignore QueueDel;
%ignore init_queue;
%ignore save_queue;
%ignore term_queue;
%ignore move_problems;
%ig
www.eeworm.com/read/419339/10873505
h queue.h
#ifndef QUEUE_H
#define QUEUE_H
#include "poly.h"
typedef struct queue *queue;
queue newQueue ();
void enQueue (queue q, poly x);
poly deQueue (queue q);
int queueIsEmpty (queue q);
int queueSize (
www.eeworm.com/read/419339/10873531
c queue.c
#include "mystdlib.h"
#include "linkedList.h"
#include "queue.h"
struct queue
{
linkedList l;
};
queue newQueue ()
{
queue q = checkedMalloc (sizeof (*q));
q->l = newLinkedList ();
return
www.eeworm.com/read/274306/10877454
h queue.h
// specification file for an unlimited queue for storing bytes
#ifndef CRYPTOPP_QUEUE_H
#define CRYPTOPP_QUEUE_H
#include "cryptlib.h"
NAMESPACE_BEGIN(CryptoPP)
// The queue is implemente