fix wget timeout bug

This commit is contained in:
JamesonHuang 2015-06-30 13:40:33 +08:00
parent 0d6217710c
commit 4b50300db1
5 changed files with 2112 additions and 1 deletions

BIN
1_3.test_code/c_test/testSprintf Executable file

Binary file not shown.

View File

@ -0,0 +1,16 @@
/*************************************************************************
> File Name: testSprintf.c
> Description:
> Conclusion:
> Author: rh_Jameson
> Created Time: 20150629 133448
************************************************************************/
#include<stdio.h>
int main(){
char buffer[50];
int val = 10;
sprintf(buffer, "helloworld %d", val);
printf("%s", buffer);
printf("%d, %d", __LINE__, __func__);
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

1
test
View File

@ -1 +0,0 @@
hello