代码搜索:strings
找到约 10,000 项符合「strings」的源代码
代码结果 10,000
www.eeworm.com/read/243166/4531717
http-strings
http_http "http://"
http_200 "200 "
http_301 "301 "
http_302 "302 "
http_get "GET "
http_10 "HTTP/1.0"
http_11 "HTTP/1.1"
http_content_type "content-type: "
http_texthtml "text/html"
http_loc
www.eeworm.com/read/243166/4531822
http-strings
http_http "http://"
http_200 "200 "
http_301 "301 "
http_302 "302 "
http_get "GET "
http_10 "HTTP/1.0"
http_11 "HTTP/1.1"
http_content_type "content-type: "
http_texthtml "text/html"
http_loc
www.eeworm.com/read/242733/4536402
c strings.c
/* Copyright (c) 1995-2000 Microsoft Corporation. All rights reserved. */
typedef unsigned short wchar_t;
unsigned int strlenW(const wchar_t *wcs)
{
const wchar_t *eos = wcs;
while (*eos
www.eeworm.com/read/242733/4536412
c strings.c
/* Copyright (c) 1995-2000 Microsoft Corporation. All rights reserved. */
typedef unsigned short wchar_t;
unsigned int strlenW(const wchar_t *wcs)
{
const wchar_t *eos = wcs;
while (*eos
www.eeworm.com/read/242733/4536426
c strings.c
/* Copyright (c) 1995-2000 Microsoft Corporation. All rights reserved. */
typedef unsigned short wchar_t;
unsigned int strlenW(const wchar_t *wcs)
{
const wchar_t *eos = wcs;
while (*eos
www.eeworm.com/read/242733/4536463
c strings.c
/* Copyright (c) 1995-2000 Microsoft Corporation. All rights reserved. */
typedef unsigned short wchar_t;
unsigned int strlenW(const wchar_t *wcs)
{
const wchar_t *eos = wcs;
while (*eos
www.eeworm.com/read/242733/4536543
c strings.c
/* Copyright (c) 1995-2000 Microsoft Corporation. All rights reserved. */
#include
#if !defined(PPC) && !defined(x86) // in the crt on PPC and x86
/********************************
www.eeworm.com/read/242732/4537793
h strings.h
/*
File: strings.h
Copyright: Public Domain
This file is provided because non ANSI fuctions are described in string.h
that belong in strings.h. These functions are provided for
www.eeworm.com/read/242331/4554598
js strings.js
// strings.js
function wordCount(str) {
var wordArray = new Array();
str = prepStr(str);
var tempArray = str.split(' ').sort();
var count = 1;
// Iterate through all the words
for (va
www.eeworm.com/read/242082/4556054
c strings.c
/*
COW : Character Oriented Windows
strings.c : common string pool (multiused strings)
(compiles with minimal headers)
NOTE : the types of data in this file must track strings.h
*/
#if