代码搜索:String
找到约 10,000 项符合「String」的源代码
代码结果 10,000
www.eeworm.com/read/179236/7583908
h string.h
www.eeworm.com/read/446156/7584924
c string.c
/*
* linux/lib/string.c
*
* (C) 1991 Linus Torvalds
*/
#ifndef __GNUC__
#error I want gcc!
#endif
#define extern
#define inline
#define __LIBRARY__
#include
www.eeworm.com/read/446156/7584955
h string.h
#ifndef _STRING_H_
#define _STRING_H_
#ifndef NULL
#define NULL ((void *) 0)
#endif
#ifndef _SIZE_T
#define _SIZE_T
typedef unsigned int size_t;
#endif
extern char * strerror(int errno);
/*
* Thi
www.eeworm.com/read/445548/7593700
txt string.txt
function CheckUser()
{
if(!checkLength("UserName" , "用户名称" , 3 , 16 , "~!@#$%^&*+=\\\'\"\"))
return
www.eeworm.com/read/445534/7594221
o string.o
www.eeworm.com/read/445412/7595762
h string.h
/*
* string.h
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER wit
www.eeworm.com/read/445043/7600062
c string.c
/*
* linux/lib/string.c
*
* (C) 1991 Linus Torvalds
*/
#ifndef __GNUC__ // 需要GNU 的C 编译器编译。
#error I want gcc!
#endif
#define extern
#define inline
#define __LIBRARY__
#include
www.eeworm.com/read/445043/7600095
h string.h
#ifndef _STRING_H_
#define _STRING_H_
#ifndef NULL
#define NULL ((void *) 0)
#endif
#ifndef _SIZE_T
#define _SIZE_T
typedef unsigned int size_t;
#endif
extern char *strerror (int errno);
/*
* This
www.eeworm.com/read/440411/7689695
h string.h
#ifndef __STRING_H__
#define __STRING_H__
#include "Utility.h"
#include "dbl_lk_list.h"
// 串类
class String
{
public:
// 抽象数据类型方法声明及重载编译系统默认方法声明:
String(
www.eeworm.com/read/440253/7691439
asm string.asm
; This sample shows the use
; of input and output string
; functions of emu8086.inc
#make_COM#
ORG 100h
INCLUDE 'emu8086.inc'
; print a welcome message:
LEA SI, msg1
CALL p