代码搜索:Functions
找到约 10,000 项符合「Functions」的源代码
代码结果 10,000
www.eeworm.com/read/333657/3383205
cs functions.cs
using System;
using System.Text;
using System.IO;
using System.Text.RegularExpressions;
using System.Data;
using System.Runtime;
using System.Data.SqlClient;
using System.Configuration;
using
www.eeworm.com/read/331135/3415360
js functions.js
/*****************************************************************************
* functions.js: VLC media player web interface
************************************************************************
www.eeworm.com/read/330290/3425997
c functions.c
/*
* functions.c This file contains the functions that talk to the modem
* and the serial port. It seperates the user interface
* from the low-level functions. The script language also
* uses t
www.eeworm.com/read/328235/3445687
c functions.c
#include "example.h"
#include "functions.h"
#include "fat.h"
#include "flash.h"
#if defined(CONFIG_HWBLOCK_PCMCIA)
#include "pcmcia.h"
#endif
#if defined(CONFIG_HWBLOCK_SD)
#include "sd.h"
#endif
#
www.eeworm.com/read/328235/3445706
h functions.h
#ifndef FUNCTIONS_H
#define FUNCTIONS_H
#include "example.h"
typedef int(*DATA_OPEN_FUNCTION)(const char*);
typedef int(*DATA_CLOSE_FUNCTION)();
typedef int(*DATA_READ_FUNCTION)(void*, int);
typede
www.eeworm.com/read/321483/3533956
pm functions.pm
package File::Spec::Functions;
use File::Spec;
use strict;
use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS $VERSION);
$VERSION = '3.2501';
require Exporter;
@ISA = qw(Exporter);
@EXPORT = qw(
www.eeworm.com/read/321483/3533963
t functions.t
#!/usr/bin/perl -w
use Test;
use File::Spec::Functions qw/:ALL/;
plan tests => 2;
ok catfile('a','b','c'), File::Spec->catfile('a','b','c');
# seems to return 0 or 1, so see if we can call it - 200