代码搜索:stdlib
找到约 10,000 项符合「stdlib」的源代码
代码结果 10,000
www.eeworm.com/read/216450/4894094
c env_prefix.c
#include "sysutil.h"
#include
#include
/*=========================================================================*
* env_prefix *
*==================================
www.eeworm.com/read/216450/4894096
c env_parse.c
#include "sysutil.h"
#include
#include
/*=========================================================================*
* env_parse *
*==================================
www.eeworm.com/read/209211/4984733
c atol.c
#include
long
atol(const char *s)
{
return(strtol(s, (char **)0, 10));
}
www.eeworm.com/read/209211/4984737
c itol.c
#include
long
itol(const char *s)
{
return(strtol(s, (char **)0, 10));
}
www.eeworm.com/read/209211/4984753
c itoa.c
#include
int
itoa(const char *s)
{
return(strtol(s, (char **)0, 10));
}
www.eeworm.com/read/209211/4984756
c atoi.c
#include
int
atoi(const char *s)
{
return(strtol(s, (char **)0, 10));
}
www.eeworm.com/read/198784/5082259
cpp mutextest.cpp
#inlcude "Sync.h"
#include
#include
main()
{
CThreadMutex mutex;
}
www.eeworm.com/read/198784/5082352
cpp mutextest.cpp
#inlcude "Sync.h"
#include
#include
main()
{
CThreadMutex mutex;
}
www.eeworm.com/read/195829/5107077
h heapstr.h
#include
#include
typedef struct
{
char *ch;
int len;
}HString;
www.eeworm.com/read/177351/5328650
c int.c
#include
int main(int argc, char **argv)
{
asm ("int $129");
exit(0);
}