代码搜索:String
找到约 10,000 项符合「String」的源代码
代码结果 10,000
www.eeworm.com/read/427421/8946783
ol string.ol
www.eeworm.com/read/427286/8953765
mac string.mac
; --------------------------------------------------------------------
; 数据处理宏指令库 - STRING.MAC
; --------------------------------------------------------------------
; (0AH型)ASCII转16位二进制数
; 调用:A
www.eeworm.com/read/186023/8965750
c string.c
#ifndef __GNUC__
#error I want gcc!
#endif
#define extern
#define inline
#define __LIBRARY__
#include
www.eeworm.com/read/186023/8965825
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/427173/8970064
h string.h
@函数名称: strdup
函数原型: char *strdup(const char *s)
函数功能: 字符串拷贝,目的空间由该函数分配
函数返回: 指向拷贝后的字符串指针
参数说明: src-待拷贝的源字符串
所属文件:
#include
#include
#
www.eeworm.com/read/185687/8992178
cs string.cs
using System;
namespace Eboer.MIS.PublicClass
{
///
/// String 的摘要说明。
///
public class String
{
public String()
{
//
// TODO: 在此处添加构造函数逻辑
//
}
www.eeworm.com/read/283726/8993639
h string.h
#pragma once
#include "global.h"
DLL_INTERNAL CString Data2HexString ( char *data, int size, int nBytesPerLine=16 );
DLL_INTERNAL int ConvStringToHexData(CString csOrgStr, BYTE *szOutBuffer, in
www.eeworm.com/read/283726/8993690
cpp string.cpp
#include "StdAfx.h"
#include "String.h"
CString Data2HexString ( char *data, int size, int nBytesPerLine/*=16*/ )
{
CString csHexString, csTemp;
for ( int i=0; i
www.eeworm.com/read/283691/8996247
h string.h
#ifndef LINGIX_STRING_H
#define LINGIX_STRING_H
extern inline void *memset (void *b, int c, unsigned long len)
{
unsigned char *p;
register unsigned long i;
p = (unsigned char
www.eeworm.com/read/382196/9042572