Home | History | Annotate | Download | only in mod_sed
      1 /*
      2  * Copyright (c) 2005, 2008 Sun Microsystems, Inc. All Rights Reserved.
      3  * Use is subject to license terms.
      4  *
      5  *	Copyright (c) 1984 AT&T
      6  *	  All Rights Reserved
      7  *
      8  * Licensed under the Apache License, Version 2.0 (the "License");
      9  * you may not use this file except in compliance with the License.
     10  * You may obtain a copy of the License at
     11  *  http://www.apache.org/licenses/LICENSE-2.0.
     12  *
     13  * Unless required by applicable law or agreed to in writing, software
     14  * distributed under the License is distributed on an "AS IS" BASIS,
     15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
     16  * or implied.
     17  * See the License for the specific language governing permissions and
     18  * limitations under the License.
     19  */
     20 
     21 #ifndef _SED_H
     22 #define _SED_H
     23 
     24 #include <stdlib.h>
     25 #include <limits.h>
     26 
     27 #define CEND    16
     28 #define CLNUM   14
     29 
     30 #define RESIZE  10000
     31 #define LBSIZE  1000
     32 
     33 #define ACOM    01
     34 #define BCOM    020
     35 #define CCOM    02
     36 #define CDCOM   025
     37 #define CNCOM   022
     38 #define COCOM   017
     39 #define CPCOM   023
     40 #define DCOM    03
     41 #define ECOM    015
     42 #define EQCOM   013
     43 #define FCOM    016
     44 #define GCOM    027
     45 #define CGCOM   030
     46 #define HCOM    031
     47 #define CHCOM   032
     48 #define ICOM    04
     49 #define LCOM    05
     50 #define NCOM    012
     51 #define PCOM    010
     52 #define QCOM    011
     53 #define RCOM    06
     54 #define SCOM    07
     55 #define TCOM    021
     56 #define WCOM    014
     57 #define CWCOM   024
     58 #define YCOM    026
     59 #define XCOM    033
     60 
     61 #endif /* _SED_H */
     62