代码搜索:Command
找到约 10,000 项符合「Command」的源代码
代码结果 10,000
www.eeworm.com/read/489559/1218388
c command.c
/*
* (C) Copyright 2000-2003
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software
www.eeworm.com/read/489559/1219484
c command.c
#include
#include
#include
#include
#define PROMPT ">"
void
getline(char *buf,int *num,int max_num)
{
static int line_len = 0;
www.eeworm.com/read/488675/1227447
java command.java
/*
* Fire (Flexible Interface Rendering Engine) is a set of graphics widgets for creating GUIs for j2me applications.
* Copyright (C) 2006-2008 Bluevibe (www.bluevibe.net)
* This library is free
www.eeworm.com/read/486883/1245776
c command.c
#include
#include
#include
#include
#define PROMPT ">"
void
getline(char *buf,int *num,int max_num)
{
static int line_len = 0;
www.eeworm.com/read/484868/1265859
nc command.nc
// $Id: Command.nc,v 1.1.2.4 2003/08/26 09:08:14 cssharp Exp $
/* tab:4
* "Copyright (c) 2000-2003 The Regents of the University of California.
* All rights reserved.
*
* Permission to
www.eeworm.com/read/484868/1266032
h command.h
// $Id: Command.h,v 1.10.4.4 2003/08/26 09:08:12 cssharp Exp $
/* tab:4
* "Copyright (c) 2000-2003 The Regents of the University of California.
* All rights reserved.
*
* Permission to
www.eeworm.com/read/483949/1272631
java command.java
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regardi
www.eeworm.com/read/481053/1299998
h command.h
#if !defined(COMMAND_H)
#define COMMAND_H
#include
// 命令栈数据结构
struct CommandDS
{
char szElement[81];
};
// 命令栈链表
struct CommandList
{
struct CommandDS Command;
struct
www.eeworm.com/read/481053/1300008
c command.c
#include "Command.h"
#include "Server.h"
#include
// 添加一个元素到命令栈中
struct CommandList *Add_Command(struct CommandList *pNode,struct CommandDS Command)
{
if (pNode->pNext = (struct C
www.eeworm.com/read/481053/1300026
h command.h
#if !defined(COMMAND_H)
#define COMMAND_H
#include
struct CommandDS
{
char szElement[81];
};
struct CommandList
{
struct CommandDS Command;
struct CommandList *pNext;
}