代码搜索:checking
找到约 6,492 项符合「checking」的源代码
代码结果 6,492
www.eeworm.com/read/173209/9666979
configure
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated automatically using autoconf version 2.13
# Copyright (C) 1992, 93, 94, 95, 96 Free Software Foundation, In
www.eeworm.com/read/414232/11123839
log config.log
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by configure, which was
generated by GNU Autoconf 2.53. I
www.eeworm.com/read/413044/11168862
c ifdef.c
/* ifdef.c -- uses conditional compilation */
#include
#define JUST_CHECKING
#define LIMIT 4
int main(void)
{
int i;
int total = 0;
for (i = 1; i
www.eeworm.com/read/267559/11174939
bld fifo89.bld
Release 9.1.03i ngdbuild J.33
Copyright (c) 1995-2007 Xilinx, Inc. All rights reserved.
Command Line: G:\Xilinx91i\bin\nt\ngdbuild.exe -ise
F:/vhdl/fifos/fifo_exp1/fifo_exp1.ise -intstyle ise -dd _
www.eeworm.com/read/412356/11203748
txt help.txt
1.下载本包文件
2.step为mystep.sh的说明文档
3.设置mystep.sh的权限 chmod a+x mystep.sh
4.执行mystep.sh
5.用vi打开.bash_profile,修改自己的学号,和真实姓名
6.注销机器,重新登陆,为的是让我们刚才的配置生效
7.第一次使用首先要注册自己:进终端:register回车
8.每天来的时候,走的时候,打开终端:checki
www.eeworm.com/read/249440/12505753
inc aafont.inc
{*******************************************************************************
AAFont - 平滑特效字体控件包
---------------------------
www.eeworm.com/read/238067/13909343
inc aafont.inc
{*******************************************************************************
AAFont - 平滑特效字体控件包
---------------------------
www.eeworm.com/read/203993/15347939
plg 2.plg
Build Log
--------------------Configuration: 2 - Win32 Debug--------------------
Command Lines
Creating temporary file "D:\DOCUME~1\108\LOCALS~
www.eeworm.com/read/113711/15450356
c cblas_example2.c
/* cblas_example2.c */
#include
#include
#include "cblas.h"
#include "cblas_f77.h"
#define INVALID -1
int main (int argc, char **argv )
{
int rout=-1,info=0,m,n,k,lda,ldb,ld
www.eeworm.com/read/108494/15585331
c xmalloc.c
/*
* xmalloc.c
*
* Simple error-checking version of malloc()
*
*/
#include
#include
void *xmalloc(size_t size)
{
void *p = malloc(size);
if ( !p ) {
fprintf(stderr