Print this page
9718 update mandoc to 1.14.4
   1 /*      $Id: roff.h,v 1.58 2017/07/08 14:51:05 schwarze Exp $   */
   2 /*
   3  * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
   4  * Copyright (c) 2013, 2014, 2015, 2017 Ingo Schwarze <schwarze@openbsd.org>
   5  *
   6  * Permission to use, copy, modify, and distribute this software for any
   7  * purpose with or without fee is hereby granted, provided that the above
   8  * copyright notice and this permission notice appear in all copies.
   9  *
  10  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHORS DISCLAIM ALL WARRANTIES
  11  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  12  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
  13  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  14  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  15  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  16  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  17  */
  18 
  19 struct  ohash;
  20 struct  mdoc_arg;
  21 union   mdoc_data;


  44         SEC_ERRORS,
  45         SEC_SEE_ALSO,
  46         SEC_STANDARDS,
  47         SEC_HISTORY,
  48         SEC_AUTHORS,
  49         SEC_CAVEATS,
  50         SEC_BUGS,
  51         SEC_SECURITY,
  52         SEC_CUSTOM,
  53         SEC__MAX
  54 };
  55 
  56 enum    roff_type {
  57         ROFFT_ROOT,
  58         ROFFT_BLOCK,
  59         ROFFT_HEAD,
  60         ROFFT_BODY,
  61         ROFFT_TAIL,
  62         ROFFT_ELEM,
  63         ROFFT_TEXT,

  64         ROFFT_TBL,
  65         ROFFT_EQN
  66 };
  67 
  68 enum    roff_tok {
  69         ROFF_br = 0,
  70         ROFF_ce,
  71         ROFF_ft,
  72         ROFF_ll,
  73         ROFF_mc,
  74         ROFF_po,
  75         ROFF_rj,
  76         ROFF_sp,
  77         ROFF_ta,
  78         ROFF_ti,
  79         ROFF_MAX,
  80         ROFF_ab,
  81         ROFF_ad,
  82         ROFF_af,
  83         ROFF_aln,


   1 /*      $Id: roff.h,v 1.59 2018/04/11 17:11:13 schwarze Exp $   */
   2 /*
   3  * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
   4  * Copyright (c) 2013, 2014, 2015, 2017 Ingo Schwarze <schwarze@openbsd.org>
   5  *
   6  * Permission to use, copy, modify, and distribute this software for any
   7  * purpose with or without fee is hereby granted, provided that the above
   8  * copyright notice and this permission notice appear in all copies.
   9  *
  10  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHORS DISCLAIM ALL WARRANTIES
  11  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  12  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
  13  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  14  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  15  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  16  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  17  */
  18 
  19 struct  ohash;
  20 struct  mdoc_arg;
  21 union   mdoc_data;


  44         SEC_ERRORS,
  45         SEC_SEE_ALSO,
  46         SEC_STANDARDS,
  47         SEC_HISTORY,
  48         SEC_AUTHORS,
  49         SEC_CAVEATS,
  50         SEC_BUGS,
  51         SEC_SECURITY,
  52         SEC_CUSTOM,
  53         SEC__MAX
  54 };
  55 
  56 enum    roff_type {
  57         ROFFT_ROOT,
  58         ROFFT_BLOCK,
  59         ROFFT_HEAD,
  60         ROFFT_BODY,
  61         ROFFT_TAIL,
  62         ROFFT_ELEM,
  63         ROFFT_TEXT,
  64         ROFFT_COMMENT,
  65         ROFFT_TBL,
  66         ROFFT_EQN
  67 };
  68 
  69 enum    roff_tok {
  70         ROFF_br = 0,
  71         ROFF_ce,
  72         ROFF_ft,
  73         ROFF_ll,
  74         ROFF_mc,
  75         ROFF_po,
  76         ROFF_rj,
  77         ROFF_sp,
  78         ROFF_ta,
  79         ROFF_ti,
  80         ROFF_MAX,
  81         ROFF_ab,
  82         ROFF_ad,
  83         ROFF_af,
  84         ROFF_aln,