代码搜索:utils
找到约 10,000 项符合「utils」的源代码
代码结果 10,000
www.eeworm.com/read/143391/12878754
o utils.o
www.eeworm.com/read/143390/12878844
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/143390/12878858
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/143390/12878941
o utils.o
www.eeworm.com/read/143390/12878988
o utils.o
www.eeworm.com/read/330596/12879104
class utils.class
www.eeworm.com/read/330595/12879136
class utils.class
www.eeworm.com/read/244097/12887956
c utils.c
/*
* Various utilities for ffmpeg system
* Copyright (c) 2000, 2001, 2002 Fabrice Bellard
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU
www.eeworm.com/read/244097/12888460
c utils.c
/*
* utils for libavcodec
* Copyright (c) 2001 Fabrice Bellard.
* Copyright (c) 2003 Michel Bardiaux for the av_log API
* Copyright (c) 2002-2004 Michael Niedermayer
*
* This
www.eeworm.com/read/244001/12900718
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