代码搜索:IO控制
找到约 10,000 项符合「IO控制」的源代码
代码结果 10,000
www.eeworm.com/read/209211/4986576
c _io_putc.c
/*
* pANS stdio -- _IO_putc, _IO_cleanup
*/
#include "iolib.h"
void _IO_cleanup(void){
fflush(NULL);
}
/*
* Look this over for simplification
*/
int _IO_putc(int c, FILE *f){
int cnt;
static in
www.eeworm.com/read/209211/4986578
c _io_getc.c
/*
* pANS stdio -- _IO_getc
*/
#include "iolib.h"
int _IO_getc(FILE *f){
int cnt;
switch(f->state){
default: /* CLOSED, WR, ERR, EOF */
return EOF;
case OPEN:
_IO_setvbuf(f);
case RDWR:
ca
www.eeworm.com/read/208123/4996031
h io_map.h
/** ###################################################################
** THIS BEAN MODULE IS GENERATED BY THE TOOL. DO NOT MODIFY IT.
** Filename : IO_Map.H
** Project : RTOSDemo
www.eeworm.com/read/208123/4996045
c io_map.c
/** ###################################################################
** THIS BEAN MODULE IS GENERATED BY THE TOOL. DO NOT MODIFY IT.
** Filename : IO_Map.C
** Project : RTOSDemo
www.eeworm.com/read/208123/4996757
h io_map.h
/** ###################################################################
** THIS BEAN MODULE IS GENERATED BY THE TOOL. DO NOT MODIFY IT.
** Filename : IO_Map.H
** Project : RTOSDemo
www.eeworm.com/read/208123/4996772
c io_map.c
/** ###################################################################
** THIS BEAN MODULE IS GENERATED BY THE TOOL. DO NOT MODIFY IT.
** Filename : IO_Map.C
** Project : RTOSDemo
www.eeworm.com/read/207991/4999201
h mal_io.h
#ifndef _PRINT_H_
#define _PRINT_H_
#include
#include
#include
typedef struct {
int up, down;
} bipipe;
typedef FILE *fstream;
#define fileCheck(fp) if (!fp)
www.eeworm.com/read/207991/4999314
c mal_io.c
#line 208 "/export/scratch0/monet/monet.GNU.64.64.d.14791/MonetDB5/src/modules/mal/mal_io.mx"
#include "mal_config.h"
#include "mal_io.h"
str
io_stdin(bstream **ret)
{
*ret = (bstream*)GDKin;
retu
www.eeworm.com/read/207991/4999343
mx mal_io.mx
@' The contents of this file are subject to the MonetDB Public License
@' Version 1.1 (the "License"); you may not use this file except in
@' compliance with the License. You may obtain a copy of the
www.eeworm.com/read/207991/4999371
mal mal_io.mal
#line 36 "/export/scratch0/monet/monet.GNU.64.64.d.14791/MonetDB5/src/modules/mal/mal_io.mx"
module io;
command stdin():bstream
address io_stdin
comment "return the input stream to the database clien