代码搜索:FUNCTION
找到约 10,000 项符合「FUNCTION」的源代码
代码结果 10,000
www.eeworm.com/read/262261/11595717
function
#!/bin/sh
foo() {
echo "Function foo is executing"
}
echo "script starting"
foo
echo "script ended"
exit 0
www.eeworm.com/read/347484/11662784
function
int my_write(int fd,void *buffer,int length)
{
int bytes_left;
int written_bytes;
char *ptr;
ptr=buffer;
bytes_left=length;
while(bytes_left>0)
{
/* 开始写*/
written_bytes=write(fd,
www.eeworm.com/read/129337/14250766
function
#!/bin/sh
foo() {
echo "Function foo is executing"
}
echo "script starting"
foo
echo "script ended"
exit 0
www.eeworm.com/read/228773/14363954
function
#!/bin/sh
foo() {
echo "Function foo is executing"
}
echo "script starting"
foo
echo "script ended"
exit 0
www.eeworm.com/read/306178/3747988
function
General Concept:
----------------
MudOS has a variable type named 'function'. Variables of this type may
be used to point to a wide variety of functions. You are probably already
familiar with
www.eeworm.com/read/306178/3747998
function
* The LPC function (or method):
The LPC function is similar but not identical to that provided by C
(it is most similar to that provided by ANSI C). The syntax is as follows:
return_type funct
www.eeworm.com/read/265484/11262674
function
#!/bin/sh
foo() {
echo "Function foo is executing"
}
echo "script starting"
foo
echo "script ended"
exit 0
www.eeworm.com/read/147608/12542782
function
#!/bin/sh
foo() {
echo "Function foo is executing"
}
echo "script starting"
foo
echo "script ended"
exit 0
www.eeworm.com/read/133667/14030946
function
#!/bin/sh
foo() {
echo "Function foo is executing"
}
echo "script starting"
foo
echo "script ended"
exit 0
www.eeworm.com/read/204809/15333352
function
#!/bin/sh
foo() {
echo "Function foo is executing"
}
echo "script starting"
foo
echo "script ended"
exit 0