代码搜索:strings
找到约 10,000 项符合「strings」的源代码
代码结果 10,000
www.eeworm.com/read/162078/10337666
cpp strings.cpp
class Strings {
char *p;
int size;
public:
Strings(char *str);
Strings(void);
Strings(const Strings &obj); // Copy constructor
~Strings(void) {delete [] p;}
f
www.eeworm.com/read/354597/10343107
c strings.c
/*
* STRINGS.C - Output printable ascii strings from a binary file.
* E.g. this can be used to locate identifier strings from .EXE-files
* or other messages.
*
* PROGRAMMER: Martt
www.eeworm.com/read/354597/10343397
exe strings.exe
www.eeworm.com/read/354597/10343448
mak strings.mak
#
# Makefile for STRINGS.EXE
#
# Compiler : Microsoft C 6.0
# Created : 4.8.1992
# Copyright (c) : Martti Ylikoski, 1992
#
# Notes: The llibcep.lib is the default library in m
www.eeworm.com/read/354597/10343522
txt strings.txt
STRINGS [DUAL MODE]
NAME STRINGS
USAGE
strings [-count] file[s] | /H | /?] [/P]
DESCRIPTION
www.eeworm.com/read/280077/10356027
webclient-strings
http_http "http://"
http_200 "200 "
http_301 "301 "
http_302 "302 "
http_get "GET "
http_10 "HTTP/1.0"
http_11 "HTTP/1.1"
http_content_type "content-type: "
http_texthtml "text/html"
http_location "lo
www.eeworm.com/read/280077/10356055
http-strings
http_http "http://"
http_200 "200 "
http_301 "301 "
http_302 "302 "
http_get "GET "
http_10 "HTTP/1.0"
http_11 "HTTP/1.1"
http_content_type "content-type: "
http_texthtml "text/html"
http_location "lo
www.eeworm.com/read/280077/10356136
smtp-strings
smtp_220 "220"
smtp_helo "HELO "
smtp_mail_from "MAIL FROM: "
smtp_rcpt_to "RCPT TO: "
smtp_data "DATA\r\n"
smtp_to "To: "
smtp_from "From: "
smtp_subject "Subject: "
smtp_quit "QUIT\r\n"
smtp_crnl "\
www.eeworm.com/read/161772/10376521
c strings.c
/* Demonstrates strrev(), strset(), and strnset(). */
#include
#include
char str[] = "This is the test string.";
int main( void )
{
printf("\nThe original string: %s
www.eeworm.com/read/161772/10376560