代码搜索结果
找到约 820,005 项符合
if 的代码
if-mib.h
/*
* module to include the modules
*/
config_require(if-mib/ifTable);
config_require(if-mib/ifXTable);
if.c
/***********************************************************************
*
* if.c
*
* Implementation of user-space PPPoE redirector for Linux.
*
* Functions for opening a raw socket and reading/writin
config.so.in
.ds RD @ETC_DIR@/raddb
.ds RL @RADLOG_DIR@
.ds RP @RADPID_DIR@
.ds AU Sergey Poznyakoff \fB\fR
.if \n(mo=1 .ds mo January
.if \n(mo=2 .ds mo February
.if \n(mo=3 .ds mo March
.if \
_printf.c
/* For AVR, do not compile this file standalone in libsrc.common\stdio
*/
#if !defined(_AVR) || defined(AVR_DOIT)
#include
#include
#include
#include
_printf_string.c
/* #include'd in _printf.c twice for AVR
* SPTR - pointer to the string to print
* STRLEN - strlen or cstrlen
*/
#if !defined(MINIMAL_PRINTF)
if (prec == -1)
prec
strncmp.c
#include
int strncmp(CONST char *s1, CONST char *s2, size_t n)
{
while (n-- && *s1 && *s2 && *s1 == *s2)
{
s1++;
s2++;
}
if ((n+1) == 0 || *s1 == *s2)
return 0;
if
strpbrk.c
#include
char *strpbrk(CONST char *s1, CONST char *s2)
{
int i = strcspn(s1, s2);
if (s1[i])
return (char *)&s1[i];
return 0;
}
strchr.c
#include
char *strchr(CONST char *s, int c)
{
while (*s && *s != c)
s++;
if (*s == c)
return (char *)s;
return 0;
}
strrchr.c
#include
char *strrchr(CONST char *s, int c)
{
CONST char *p;
for (p = 0; *s; s++)
if (*s == c)
p = s;
if (*s == c)
p = s;
return (char *)p;
}
strcmp.c
#include
int strcmp(CONST char *s1, CONST char *s2)
{
while (*s1 && *s2 && *s1 == *s2)
{
s1++;
s2++;
}
if (*s1 == *s2)
return 0;
if (*s1 < *s2)
return -1;
ret