代码搜索:String
找到约 10,000 项符合「String」的源代码
代码结果 10,000
www.eeworm.com/read/462821/7195369
cpp string.cpp
// Borland C++ - (C) Copyright 1991 by Borland International
//STRING.CPP--Example from Getting Started */
#include
#include
class String {
char *char_ptr; // p
www.eeworm.com/read/461713/7221449
cpp string.cpp
// Borland C++ - (C) Copyright 1991 by Borland International
//STRING.CPP--Example from Getting Started */
#include
#include
class String {
char *char_ptr; // p
www.eeworm.com/read/461713/7221575
h string.h
/* string.h
Definitions for memory and string functions.
Copyright (c) 1987, 1991 by Borland International
All Rights Reserved.
*/
#ifndef __STRING_H
#define __STRING_H
#if
www.eeworm.com/read/461143/7232731
c string.c
#ifndef __GNUC__
#error I want gcc!
#endif
#define extern
#define inline
#define __LIBRARY__
#include
www.eeworm.com/read/461143/7232762
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/460889/7238660
al string.al
.CSEG
;PCODE: $00000000 VOL: 0
;PCODE: $00000001 VOL: 0
;PCODE: $00000002 VOL: 0
ldd r31,y+6
;PCODE: $00000003 VOL: 0
ldd r30,y+5
;PCODE: $00000004 VOL: 0
ldd r25,y+1
;PCODE
www.eeworm.com/read/460889/7238714
ol string.ol
www.eeworm.com/read/459557/7273846
txt string.txt
main()
{int i,j;
char s_tr[19];
i=10;
j=i+10;
printf("hello"); /*disp*/
}
www.eeworm.com/read/458682/7291328
sh string.sh
#!/bin/bash
# string.bash --- bash emulation of string(3) library routines
# Author: Noah Friedman <friedman@prep.ai.mit.edu>
# ==> Used with his kind permission in this document.
# Created
www.eeworm.com/read/458482/7296214
h string.h
#ifndef _String_H
#define _String_H
#define MAX_STRING 200
#include
class String
{
public:
String();
String(const char* astr);
String(const String& astr);
String(con