代码搜索:len
找到约 10,000 项符合「len」的源代码
代码结果 10,000
www.eeworm.com/read/308442/13701295
c find_len.c
#include
int string_length(char *);
void main(void)
{
char *title= "Jamsa's 1001 C/C++ Tips";
char *section = "Tools";
printf("Length of %s is %d\n", title, string_leng
www.eeworm.com/read/301198/13863926
c stk_len.c
#include
#include
void main(void)
{
printf("The current stack size %d bytes\n", _stklen);
}
www.eeworm.com/read/301198/13864088
c find_len.c
#include
int string_length(char *);
void main(void)
{
char *title= "Jamsa's 1001 C/C++ Tips";
char *section = "Tools";
printf("Length of %s is %d\n", title, string_leng
www.eeworm.com/read/238485/13882544
c str_len.c
#include "str.h"
unsigned int str_len(s)
register char *s;
{
register char *t;
t = s;
for (;;) {
if (!*t) return t - s; ++t;
if (!*t) return t - s; ++t;
if (!*t) return t - s; ++t;
www.eeworm.com/read/136072/5873774
c sa_len.c
/* Copyright (C) 1998, 1999 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the term
www.eeworm.com/read/124910/6038042
c sa_len.c
/* Copyright (C) 1998, 1999, 2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under th
www.eeworm.com/read/101082/6241671
c h_len.c
/*
* "@(#)h_len.c 1.1"
*/
short h_len(s, n)
char *s;
long int n;
{
return(n);
}
www.eeworm.com/read/101082/6241702
c i_len.c
/*
* "@(#)i_len.c 1.1"
*/
long int i_len(s, n)
char *s;
long int n;
{
return(n);
}
www.eeworm.com/read/485337/6559327