代码搜索结果

找到约 2,917 项符合 Strip 的代码

dounssym

#!/bin/sh # objdump the symbol table, but strip off the headings and symbol # numbers and sort the result. Intended for use in comparing symbol # tables that may not be in the same order. objdump +s

testprog.c

/* This program is used to test objcopy, readelf and strip. */ extern int strcmp (char *, const char *); extern int printf (const char *, ...); int common; int global = 1; static int local = 2; sta

quipurc.c

/* A 'C' version of the shellscript dishinit * By Steve Titcombe * * Most of this has fixed calls to other functions, and will require going * through again to strip out all unnecessary error tr

ip2long.java

package book.string; public class IP2Long { //将127.0.0.1 形式的IP地址转换成10进制整数,这里没有进行任何错误处理 public static long ipToLong(String strIP){ long[] ip=new long[4]; //先找到IP地址字符串中.的位置

makefile

# Makefile,v 1.1.2.1 2003/11/21 18:12:23 jjo Exp ifeq ($(strip $(KLIPSMODULE)),) FREESWANSRCDIR=. else FREESWANSRCDIR=../../../.. endif ifeq ($(strip $(KLIPS_TOP)),) KLIPS_TOP=../../.. override EXTRA_

dounsreloc

#!/bin/sh # objdump the reloc table, but strip off the headings and reloc # numbers and sort the result. Intended for use in comparing reloc # tables that may not be in the same order. objdump +relo

dostriptest

#!/bin/sh x=striptest.xx.$$ y=striptest.yy.$$ cp $1 $x strip $x cp $2 $y strip $y doobjcmp $x $y exit #eof