mirror of
https://github.com/apache/httpd.git
synced 2025-08-01 07:26:57 +03:00
No functional change git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1174929 13f79535-47bb-0310-9956-ffa450edef68
62 lines
1.4 KiB
C
62 lines
1.4 KiB
C
/*
|
|
* Copyright (c) 2005, 2008 Sun Microsystems, Inc. All Rights Reserved.
|
|
* Use is subject to license terms.
|
|
*
|
|
* Copyright (c) 1984 AT&T
|
|
* All Rights Reserved
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
* http://www.apache.org/licenses/LICENSE-2.0.
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
|
|
* or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef _SED_H
|
|
#define _SED_H
|
|
|
|
#include <stdlib.h>
|
|
#include <limits.h>
|
|
|
|
#define CEND 16
|
|
#define CLNUM 14
|
|
|
|
#define RESIZE 10000
|
|
#define LBSIZE 1000
|
|
|
|
#define ACOM 01
|
|
#define BCOM 020
|
|
#define CCOM 02
|
|
#define CDCOM 025
|
|
#define CNCOM 022
|
|
#define COCOM 017
|
|
#define CPCOM 023
|
|
#define DCOM 03
|
|
#define ECOM 015
|
|
#define EQCOM 013
|
|
#define FCOM 016
|
|
#define GCOM 027
|
|
#define CGCOM 030
|
|
#define HCOM 031
|
|
#define CHCOM 032
|
|
#define ICOM 04
|
|
#define LCOM 05
|
|
#define NCOM 012
|
|
#define PCOM 010
|
|
#define QCOM 011
|
|
#define RCOM 06
|
|
#define SCOM 07
|
|
#define TCOM 021
|
|
#define WCOM 014
|
|
#define CWCOM 024
|
|
#define YCOM 026
|
|
#define XCOM 033
|
|
|
|
#endif /* _SED_H */
|