代码搜索:utils
找到约 10,000 项符合「utils」的源代码
代码结果 10,000
www.eeworm.com/read/295690/8145400
h utils.h
#ifndef __UTILS_H
#define __UTILS_H
void memcpy(void *s1, const void *s2, int n);
void memset(void *s, const char ch, int n);
unsigned short ntohs(unsigned short s);
unsigned long ntohl(unsigne
www.eeworm.com/read/295690/8145408
o utils.o
www.eeworm.com/read/295690/8145451
o utils.o
www.eeworm.com/read/295690/8145488
c utils.c
#include "../inc/def.h"
#include "../inc/board.h"
#include "../inc/utils.h"
void memcpy(void *s1, const void *s2, int n)
{
int i;
for (i = 0; i < n; i++)
((char *)(s1))[i] = ((const cha
www.eeworm.com/read/146299/12660399
csp utils.csp
package utils;
function format_date(d)
{
//Apr 29 1994
return date(d).format("%b %d %Y");
}
function format_node_atts(n)
{
return string::printf("%c------%c%c%c",
(n.is_fol
www.eeworm.com/read/333484/12678530
c utils.c
#include
#include
#include
#include
#include
//////////////////////////////////////////////////////////////////////
// Utils functions
///////////
www.eeworm.com/read/333484/12678551
h utils.h
#ifndef _UTILS_H
# define _UTILS_H
char *safe_malloc(int size);
void safe_free(void *p);
#endif
www.eeworm.com/read/333477/12678720
o utils.o
www.eeworm.com/read/333477/12678762
o utils.o
www.eeworm.com/read/333477/12678848