Deleted Added
full compact
xo_open_marker.3 (282100) xo_open_marker.3 (287111)
1.\" #
2.\" # Copyright (c) 2015, Juniper Networks, Inc.
3.\" # All rights reserved.
4.\" # This SOFTWARE is licensed under the LICENSE provided in the
5.\" # ../Copyright file. By downloading, installing, copying, or
6.\" # using the SOFTWARE, you agree to be bound by the terms of that
7.\" # LICENSE.
8.\" # Phil Shafer, January 2015
9.\"
10.Dd January 22, 2015
11.Dt LIBXO 3
12.Os
13.Sh NAME
1.\" #
2.\" # Copyright (c) 2015, Juniper Networks, Inc.
3.\" # All rights reserved.
4.\" # This SOFTWARE is licensed under the LICENSE provided in the
5.\" # ../Copyright file. By downloading, installing, copying, or
6.\" # using the SOFTWARE, you agree to be bound by the terms of that
7.\" # LICENSE.
8.\" # Phil Shafer, January 2015
9.\"
10.Dd January 22, 2015
11.Dt LIBXO 3
12.Os
13.Sh NAME
14.Nm xo_open_marker
14.Nm xo_open_marker , xo_open_marker_h , xo_close_marker , xo_close_marker_h
15.Nd prevent and allow closing of open constructs
16.Sh LIBRARY
17.Lb libxo
18.Sh SYNOPSIS
19.In libxo/xo.h
15.Nd prevent and allow closing of open constructs
16.Sh LIBRARY
17.Lb libxo
18.Sh SYNOPSIS
19.In libxo/xo.h
20.Sh NAME
21.Nm xo_open_marker
22.Nm xo_open_marker_h
23.Nm xo_close_marker
24.Nm xo_close_marker_h
25.Nd open and close markers
26.Sh LIBRARY
27.Lb libxo
28.Sh SYNOPSIS
29.Ft int
30.Fn xo_open_marker "const char *name"
31.Ft int
32.Fn xo_open_marker_h "xo_handle_t *handle" "const char *name"
33.Ft int
34.Fn xo_close_marker "const char *name"
35.Ft int
36.Fn xo_close_marker_h "xo_handle_t *handle" "const char *name"

--- 67 unchanged lines hidden (view full) ---

104.Bd -literal -offset indent
105 for (i = 0; fish[i]; i++) {
106 xo_open_instance("fish");
107 xo_open_marker("fish-guts");
108 dump_fish_details(i);
109 xo_close_marker("fish-guts");
110 }
111.Ed
20.Ft int
21.Fn xo_open_marker "const char *name"
22.Ft int
23.Fn xo_open_marker_h "xo_handle_t *handle" "const char *name"
24.Ft int
25.Fn xo_close_marker "const char *name"
26.Ft int
27.Fn xo_close_marker_h "xo_handle_t *handle" "const char *name"

--- 67 unchanged lines hidden (view full) ---

95.Bd -literal -offset indent
96 for (i = 0; fish[i]; i++) {
97 xo_open_instance("fish");
98 xo_open_marker("fish-guts");
99 dump_fish_details(i);
100 xo_close_marker("fish-guts");
101 }
102.Ed
112.Sh ADDITIONAL DOCUMENTATION
113Complete documentation can be found on github:
114.Bd -literal -offset indent
115http://juniper.github.io/libxo/libxo-manual.html
116.Ed
117.Pp
118.Nm libxo
119lives on github as:
120.Bd -literal -offset indent
121https://github.com/Juniper/libxo
122.Ed
123.Pp
124The latest release of
125.Nm libxo
126is available at:
127.Bd -literal -offset indent
128https://github.com/Juniper/libxo/releases
129.Ed
130.Sh SEE ALSO
103.Sh SEE ALSO
131.Xr xo_emit 3
132.Sh HISTORY
133The
134.Nm libxo
135library was added in
136.Fx 11.0 .
137.Sh AUTHOR
138Phil Shafer
104.Xr xo_emit 3 ,
105.Xr libxo 3