代码搜索结果
找到约 3,568 项符合
Strip 的代码
strip-comments.sh
#!/bin/bash
# strip-comment.sh: 去掉C程序中的注释(/* 注释 */).
E_NOARGS=0
E_ARGERROR=66
E_WRONG_FILE_TYPE=67
if [ $# -eq "$E_NOARGS" ]
then
echo "Usage: `basename $0` C-program-file" >&2 # 将错误消息发到stderr.
envz_strip.c
/* Copyright (C) 2002 by Red Hat, Incorporated. All rights reserved.
*
* Permission to use, copy, modify, and distribute this software
* is freely granted, provided that this notice is preserved.