代码搜索:strings
找到约 10,000 项符合「strings」的源代码
代码结果 10,000
www.eeworm.com/read/136812/5861421
c strings.c
#ifndef lint
#ifdef SunB1
static char sccsid[] = "@(#)strings.c 1.1 92/07/30 SMI; SunOS MLS";
#else
static char sccsid[] = "@(#)strings.c 1.1 92/07/30 SMI";
#endif /* SunB1 */
#endif lint
www.eeworm.com/read/135709/5882065
strings infoplist.strings
/* Localized versions of Info.plist keys */
CFBundleName = "VLC";
CFBundleShortVersionString = "0.7.1";
CFBundleGetInfoString = "VLC media player 0.7.1, Copyright (c) 1996-2004 VideoLAN.";
NSHumanRea
www.eeworm.com/read/135582/5886279
h strings.h
#ifndef STRINGS_H
#define STRINGS_H
#define storystr \
" The Story:\n\
\n\
Yet again, the fate of the world rests\n\
in your hands! An evil computer hacker,\n\
known only by his handle
www.eeworm.com/read/131315/5931738
c strings.c
/*
* Test of displaying strings compiled into the text segment via -R.
*/
char str[] = "this is a test";
main ()
{
f("parameter test");
}
f (s)
char *s;
{
abort();
}
www.eeworm.com/read/131315/5931759
out strings.out
reading symbolic information ...
[using memory image in strings.core]
abort() at 0xe6
f(s = "parameter test"), line 15 in "strings.c"
main(0x1, 0xbfffe35c, 0xbfffe364), line 9 in "strings.c"
"this is
www.eeworm.com/read/131315/5931778
out strings.out
reading symbolic information ...
[using memory image in strings.core]
kill(0x4129, 0x4) at 0x110
abort() at 0x100
f(s = "parameter test"), line 15 in "strings.c"
main(0x1, 0x7fffe918, 0x7fffe920), lin
www.eeworm.com/read/131315/5935239
h strings.h
/*-
* Copyright (c) 1990, 1993
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are perm
www.eeworm.com/read/131315/5941302
substitute-strings
#!/bin/sh -x
#
# substitute various values for ||STRINGS||
#
set -e
usage()
{
echo "usage: $0 host target release-date bundle bindir srcdir inputfile outputfile"
exit 1
}
if [ $# != 8 ] ; then
www.eeworm.com/read/131315/5942562
h strings.h
/* strings.h - define standard string functions */
#ifndef _STRINGS /* once-only... */
#define _STRINGS
#ifdef SYS5
#define index strchr
#define rindex strrchr
#endif SYS5
char *index ();
char