代码搜索:strings
找到约 10,000 项符合「strings」的源代码
代码结果 10,000
www.eeworm.com/read/101082/6246737
1 strings.1
.\" SCCSID: @(#)strings.1 8.1 9/11/90
.TH strings 1
.SH Name
strings \- print ASCII strings in program
.SH Syntax
.B strings
[\fB\-|a\fR] [\fB\-o\fR] [\fB\-\fInumber\fR\|] \fIfile...\fR
.SH Descriptio
www.eeworm.com/read/101082/6250008
h strings.h
/* strings.h - define standard string functions */
/* @(#)$Id: strings.h,v 1.2 90/11/25 18:58:01 sharpe Exp $ */
#ifndef _STRINGS /* once-only... */
#define _STRINGS
#ifdef SYS5
#define index strch
www.eeworm.com/read/101082/6250525
h strings.h
/* strings.h - define standard string functions */
/* @(#)$Id: strings.h,v 1.2 90/11/25 18:58:01 sharpe Exp $ */
#ifndef _STRINGS /* once-only... */
#define _STRINGS
#ifdef SYS5
#define index strch
www.eeworm.com/read/101082/6250880
def strings.def
(*#@(#)strings.def 4.1 Ultrix 7/17/90 *)
(* $Header: strings.def,v 1.5 84/05/27 13:04:40 powell Exp $ *)
DEFINITION MODULE strings;
(* string module: make strings easier to deal with *)
(* note: som
www.eeworm.com/read/101082/6250883
mod strings.mod
(*#@(#)strings.mod 4.1 Ultrix 7/17/90 *)
(* $Header: strings.mod,v 1.4 84/05/19 11:40:14 powell Exp $ *)
implementation module strings;
procedure Compare(a, op, b : array of Char) : Boolean;
type
www.eeworm.com/read/101082/6251063
mod strings.mod
(*#@(#)strings.mod 4.1 Ultrix 7/17/90 *)
module teststrings;
from io import writef, output;
from strings import Compare, Assign, Append;
const
SHORTSTRINGSIZE = 3;
LONGSTRINGSIZE = 100;
type
www.eeworm.com/read/101015/6261953
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
www.eeworm.com/read/101015/6261984
h strings.h
/*
COW : Character Oriented Windows
strings.h : string pool (+special message-box stuff)
-- use these variables if string is duplicated, otherwise use the
explicit #defines as found in
www.eeworm.com/read/100285/6271949
out strings.out
QUERY: SELECT 'first line'
' - next line'
' - third line'
AS "Three lines to one";
Three lines to one
-----------------------------------
first line - next line - third line
(1 row)
www.eeworm.com/read/100285/6272064
sql strings.sql
--
-- Test various data entry syntaxes.
--
-- SQL92 string continuation syntax
SELECT 'first line'
' - next line'
' - third line'
AS "Three lines to one";
-- illegal string continuation syntax
SEL