[2/3] system_data_types.7: Document regmatch_t

Message ID 20200918132943.55424-3-colomar.6.4.3@gmail.com
State Not applicable
Headers
Series Document regmatch_t (and a ffix) |

Commit Message

Alejandro Colomar Sept. 18, 2020, 1:29 p.m. UTC
  Signed-off-by: Alejandro Colomar <colomar.6.4.3@gmail.com>
---
 man7/system_data_types.7 | 23 +++++++++++++++++++++--
 1 file changed, 21 insertions(+), 2 deletions(-)
  

Comments

Michael Kerrisk \(man-pages\) Sept. 18, 2020, 8:43 p.m. UTC | #1
On 9/18/20 3:29 PM, Alejandro Colomar wrote:
> Signed-off-by: Alejandro Colomar <colomar.6.4.3@gmail.com> ---
>  man7/system_data_types.7 | 23 +++++++++++++++++++++--
>  1 file changed, 21 insertions(+), 2 deletions(-)


Thanks, Alex. Patch applied.

Cheers,

Michael


> diff --git a/man7/system_data_types.7 b/man7/system_data_types.7
> index 2ccbfe817..d3dee2747 100644
> --- a/man7/system_data_types.7
> +++ b/man7/system_data_types.7
> @@ -82,6 +82,25 @@ and
>  .I ssize_t
>  types in this page.
>  .TP
> +.I regmatch_t
> +.IP
> +Include:
> +.IR <regex.h> .
> +.IP
> +.EX
> +typedef struct {
> +    regoff_t    rm_so; /* Byte offset from start of string
> +                        * to start of substring */
> +    regoff_t    rm_eo; /* Byte offset from start of string of the
> +                        * first character after the end of substring */
> +} regmatch_t;
> +.EE
> +.IP
> +Conforming to: POSIX.1-2001 and later.
> +.IP
> +See also:
> +.BR regexec (3)
> +.TP
>  .I regoff_t
>  .IP
>  Include:
> @@ -104,8 +123,8 @@ type or a
>  type.
>  .IP
>  See also the
> -.\".I regmatch_t	FIXME
> -.\"structure and the
> +.I regmatch_t
> +structure and the
>  .I ptrdiff_t
>  and
>  .I ssize_t
>
  

Patch

diff --git a/man7/system_data_types.7 b/man7/system_data_types.7
index 2ccbfe817..d3dee2747 100644
--- a/man7/system_data_types.7
+++ b/man7/system_data_types.7
@@ -82,6 +82,25 @@  and
 .I ssize_t
 types in this page.
 .TP
+.I regmatch_t
+.IP
+Include:
+.IR <regex.h> .
+.IP
+.EX
+typedef struct {
+    regoff_t    rm_so; /* Byte offset from start of string
+                        * to start of substring */
+    regoff_t    rm_eo; /* Byte offset from start of string of the
+                        * first character after the end of substring */
+} regmatch_t;
+.EE
+.IP
+Conforming to: POSIX.1-2001 and later.
+.IP
+See also:
+.BR regexec (3)
+.TP
 .I regoff_t
 .IP
 Include:
@@ -104,8 +123,8 @@  type or a
 type.
 .IP
 See also the
-.\".I regmatch_t	FIXME
-.\"structure and the
+.I regmatch_t
+structure and the
 .I ptrdiff_t
 and
 .I ssize_t