[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 14/23] man/curs_get{,_w}str.3x: Fix style nit.
From: |
G. Branden Robinson |
Subject: |
[PATCH 14/23] man/curs_get{,_w}str.3x: Fix style nit. |
Date: |
Sat, 22 Jun 2024 12:49:18 -0500 |
Put a space after pointer stars in function synopses.
---
man/curs_get_wstr.3x | 18 +++++++++---------
man/curs_getstr.3x | 16 ++++++++--------
2 files changed, 17 insertions(+), 17 deletions(-)
diff --git a/man/curs_get_wstr.3x b/man/curs_get_wstr.3x
index d179b1b65..1592fb276 100644
--- a/man/curs_get_wstr.3x
+++ b/man/curs_get_wstr.3x
@@ -58,15 +58,15 @@ .SH SYNOPSIS
.nf
\fB#include <curses.h>
.PP
-\fBint get_wstr(wint_t *\fIwstr\fP);
-\fBint wget_wstr(WINDOW *\fIwin\fP, wint_t *\fIwstr\fP);
-\fBint mvget_wstr(int \fIy\fP, int \fIx\fP, wint_t *\fIwstr\fP);
-\fBint mvwget_wstr(WINDOW *\fIwin\fP, int \fIy\fP, int \fIx\fP, wint_t
*\fIwstr\fP);
-.PP
-\fBint getn_wstr(wint_t *\fIwstr\fP, int \fIn\fP);
-\fBint wgetn_wstr(WINDOW *\fIwin\fP, wint_t *\fIwstr\fP, int \fIn\fP);
-\fBint mvgetn_wstr(int \fIy\fP, int \fIx\fP, wint_t *\fIwstr\fP, int \fIn\fP);
-\fBint mvwgetn_wstr(WINDOW *\fIwin\fP, int \fIy\fP, int \fIx\fP, wint_t
*\fIwstr\fP, int \fIn\fP);
+\fBint get_wstr(wint_t * \fIwstr\fP);
+\fBint wget_wstr(WINDOW * \fIwin\fP, wint_t * \fIwstr\fP);
+\fBint mvget_wstr(int \fIy\fP, int \fIx\fP, wint_t * \fIwstr\fP);
+\fBint mvwget_wstr(WINDOW * \fIwin\fP, int \fIy\fP, int \fIx\fP, wint_t *
\fIwstr\fP);
+.PP
+\fBint getn_wstr(wint_t * \fIwstr\fP, int \fIn\fP);
+\fBint wgetn_wstr(WINDOW * \fIwin\fP, wint_t * \fIwstr\fP, int \fIn\fP);
+\fBint mvgetn_wstr(int \fIy\fP, int \fIx\fP, wint_t * \fIwstr\fP, int \fIn\fP);
+\fBint mvwgetn_wstr(WINDOW * \fIwin\fP, int \fIy\fP, int \fIx\fP, wint_t *
\fIwstr\fP, int \fIn\fP);
.fi
.SH DESCRIPTION
The function
diff --git a/man/curs_getstr.3x b/man/curs_getstr.3x
index a468cfb85..7248b6665 100644
--- a/man/curs_getstr.3x
+++ b/man/curs_getstr.3x
@@ -58,15 +58,15 @@ .SH SYNOPSIS
.nf
\fB#include <curses.h>
.PP
-\fBint getstr(char *\fIstr\fP);
-\fBint wgetstr(WINDOW *\fIwin\fP, char *\fIstr\fP);
-\fBint mvgetstr(int \fIy\fP, int \fIx\fP, char *\fIstr\fP);
-\fBint mvwgetstr(WINDOW *\fIwin\fP, int \fIy\fP, int \fIx\fP, char *\fIstr\fP);
+\fBint getstr(char * \fIstr\fP);
+\fBint wgetstr(WINDOW * \fIwin\fP, char * \fIstr\fP);
+\fBint mvgetstr(int \fIy\fP, int \fIx\fP, char * \fIstr\fP);
+\fBint mvwgetstr(WINDOW * \fIwin\fP, int \fIy\fP, int \fIx\fP, char *
\fIstr\fP);
.PP
-\fBint getnstr(char *\fIstr\fP, int \fIn\fP);
-\fBint wgetnstr(WINDOW *\fIwin\fP, char *\fIstr\fP, int \fIn\fP);
-\fBint mvgetnstr(int \fIy\fP, int \fIx\fP, char *\fIstr\fP, int \fIn\fP);
-\fBint mvwgetnstr(WINDOW *\fIwin\fP, int \fIy\fP, int \fIx\fP, char
*\fIstr\fP, int \fIn\fP);
+\fBint getnstr(char * \fIstr\fP, int \fIn\fP);
+\fBint wgetnstr(WINDOW * \fIwin\fP, char * \fIstr\fP, int \fIn\fP);
+\fBint mvgetnstr(int \fIy\fP, int \fIx\fP, char * \fIstr\fP, int \fIn\fP);
+\fBint mvwgetnstr(WINDOW * \fIwin\fP, int \fIy\fP, int \fIx\fP, char *
\fIstr\fP, int \fIn\fP);
.fi
.SH DESCRIPTION
The function
--
2.30.2
signature.asc
Description: PGP signature
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [PATCH 14/23] man/curs_get{,_w}str.3x: Fix style nit.,
G. Branden Robinson <=