代码搜索:Local
找到约 10,000 项符合「Local」的源代码
代码结果 10,000
www.eeworm.com/read/341841/12058278
par clocktop.par
Constraints file: clocktop.pcf
Loading device database for application Par from file "clocktop_map.ncd".
"clocktop" is an NCD, version 2.38, device xc3s400, package pq208, speed -4
Loading device
www.eeworm.com/read/255427/12082178
cpp symbol.cpp
#include
#include
#include
int NUMBER;
int main(void)
{
int NUMBER;
clrscr();
NUMBER=1;
printf("\n-*-*-*- Before changing the NUMBER -*-*-*-");
printf
www.eeworm.com/read/340760/12135544
c systffs.c
/* sysTffs.c - Motorola MVME177 system-dependent TrueFFS library */
/* Copyright 1984-1997 Wind River Systems, Inc. */
#include "copyright_wrs.h"
/* FAT-FTL Lite Software Development Kit
*
www.eeworm.com/read/152141/12136715
pl convert.pl
#!/usr/bin/perl
#
# Copyright (c) 2001 Tama Communications Corporation
#
# This file is part of GNU GLOBAL.
#
# GNU GLOBAL is free software; you can redistribute it and/or modify
# it under the terms
www.eeworm.com/read/340343/12165001
c ftp.c
/*
* Copyright (c) 1985, 1989, 1993, 1994
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modificatio
www.eeworm.com/read/253821/12184289
c time.c
# include
# include
int main()
{
struct tm *local;
time_t tm;
tm = time(NULL);
local = localtime(&tm);
printf("Local time and date: %s\n", asctime(local));
loca
www.eeworm.com/read/151609/12187676
readme
********************************************************************************
* *
* Copyright J.R. Quinlan, 1987, 1988, 1989, 1990, 1991, 1992. This software *
* may not be distr
www.eeworm.com/read/253789/12200250
sh string.functions.sh
#!/bin/bash
# function strcat
# Usage: strcat s1 s2
function strcat ()
{
local s1_val s2_val
s1_val=${!1} # indirect variable expansion
s2_val=${!2}