代码搜索:utils

找到约 10,000 项符合「utils」的源代码

代码结果 10,000
www.eeworm.com/read/379711/9182349

c utils.c

/* * INET An implementation of the TCP/IP protocol suite for the LINUX * operating system. INET is implemented using the BSD Socket * interface as the means of communication with the user l
www.eeworm.com/read/182767/9192055

c utils.c

/* Various utility functions. Copyright (C) 2005 Free Software Foundation, Inc. This file is part of GNU Wget. GNU Wget is free software; you can redistribute it and/or modify it under the terms
www.eeworm.com/read/182767/9192196

h utils.h

/* Declarations for utils.c. Copyright (C) 2005 Free Software Foundation, Inc. This file is part of GNU Wget. GNU Wget is free software; you can redistribute it and/or modify it under the terms o
www.eeworm.com/read/182426/9204321

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(unsigned lo
www.eeworm.com/read/182426/9204399

c utils.c

#include "utils.h" void memcpy(void *s1, const void *s2, int n) { int i; for (i = 0; i < n; i++) ((char *)(s1))[i] = ((const char *)(s2))[i]; } void memset(void *s, const char ch, i
www.eeworm.com/read/182426/9204440

o utils.o

www.eeworm.com/read/182419/9204562

o utils.o

www.eeworm.com/read/182419/9204591

o utils.o

www.eeworm.com/read/182117/9216732

h utils.h

#ifndef _UTILS_H_ #define _UTILS_H_ #include "defines.h" class CUtils { public: CUtils(void); ~CUtils(void); static double Rad2Deg(double v) { return v*180/PI; } }; #endif
www.eeworm.com/read/182117/9216832

cpp utils.cpp

#include "StdAfx.h" #include "utils.h" CUtils::CUtils(void) { } CUtils::~CUtils(void) { }