man pages: update notcurses.h to notcurses/notcurses.h

This commit is contained in:
nick black 2020-04-19 18:46:32 -04:00
parent 3a7e4139c4
commit 7a0f4677c3
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC
22 changed files with 23 additions and 23 deletions

View File

@ -8,7 +8,7 @@ notcurses - TUI library for modern terminal emulators
# SYNOPSIS
**#include <notcurses.h>**
**#include <notcurses/notcurses.h>**
**-lnotcurses**

View File

@ -8,7 +8,7 @@ notcurses_cell - operations on notcurses cells
# SYNOPSIS
**#include <notcurses.h>**
**#include <notcurses/notcurses.h>**
```c
// See DESCRIPTION below for information on EGC encoding

View File

@ -8,7 +8,7 @@ notcurses_channels - operations on notcurses channels
# SYNOPSIS
**#include <notcurses.h>**
**#include <notcurses/notcurses.h>**
**static inline unsigned
channel_r(unsigned channel);**

View File

@ -8,7 +8,7 @@ ncdirect_init - minimal notcurses instances for styling text
# SYNOPSIS
**#include <notcurses.h>**
**#include <notcurses/notcurses.h>**
**struct ncdirect* ncdirect_init(const char *termtype, FILE* fp);**

View File

@ -8,7 +8,7 @@ notcurses_fade - fade ncplanes in and out
# SYNOPSIS
**#include <notcurses.h>**
**#include <notcurses/notcurses.h>**
```c
// Called for each delta performed in a fade on ncp. If anything but 0 is

View File

@ -8,7 +8,7 @@ notcurses_init - initialize a notcurses instance
# SYNOPSIS
**#include <notcurses.h>**
**#include <notcurses/notcurses.h>**
```c
typedef struct notcurses_options {

View File

@ -8,7 +8,7 @@ notcurses_input - input via notcurses
# SYNOPSIS
**#include <notcurses.h>**
**#include <notcurses/notcurses.h>**
```c
struct timespec;
@ -84,7 +84,7 @@ lex aborted, and the sequence thus far played back as independent literal
keystrokes.
The full list of synthesized keys (there are well over one hundred) can be
found in **<notcurses.h>**. For more details, consult **terminfo(5)**.
found in **<notcurses/notcurses.h>**. For more details, consult **terminfo(5)**.
## **NCKEY_RESIZE**

View File

@ -8,7 +8,7 @@ notcurses_lines - operations on lines and boxes
# SYNOPSIS
**#include <notcurses.h>**
**#include <notcurses/notcurses.h>**
**int ncplane_hline_interp(struct ncplane* n, const cell* c, int len, uint64_t c1, uint64_t c2);**

View File

@ -8,7 +8,7 @@ notcurses_menu - operations on menus
# SYNOPSIS
**#include <notcurses.h>**
**#include <notcurses/notcurses.h>**
```c
struct ncmenu;

View File

@ -8,7 +8,7 @@ notcurses_multiselector - high level widget for selecting from a set
# SYNOPSIS
**#include <notcurses.h>**
**#include <notcurses/notcurses.h>**
```c
**struct ncinput;**

View File

@ -8,7 +8,7 @@ notcurses_ncplane - operations on notcurses planes
# SYNOPSIS
**#include <notcurses.h>**
**#include <notcurses/notcurses.h>**
**struct ncplane* ncplane_new(struct notcurses* nc, int rows, int cols, int yoff, int xoff, void* opaque);**

View File

@ -7,7 +7,7 @@ notcurses_ncvisual - notcurses multimedia
# SYNOPSIS
**#include <notcurses.h>**
**#include <notcurses/notcurses.h>**
```c
typedef enum {

View File

@ -8,7 +8,7 @@ notcurses_output - output to ncplanes
# SYNOPSIS
**#include <notcurses.h>**
**#include <notcurses/notcurses.h>**
**static inline int
ncplane_putc(struct ncplane* n, const cell* c);**

View File

@ -8,7 +8,7 @@ notcurses_palette - operations on notcurses palettes
# SYNOPSIS
**#include <notcurses.h>**
**#include <notcurses/notcurses.h>**
```c
typedef struct palette256 {

View File

@ -8,7 +8,7 @@ notcurses_plot - high level widget for plotting
# SYNOPSIS
**#include <notcurses.h>**
**#include <notcurses/notcurses.h>**
```c
typedef enum {

View File

@ -8,7 +8,7 @@ notcurses_reel - high-level widget for hierarchical data
# SYNOPSIS
**#include <notcurses.h>**
**#include <notcurses/notcurses.h>**
```c
typedef struct ncreel_options {

View File

@ -8,7 +8,7 @@ notcurses_refresh - redraw an externally-damaged display
# SYNOPSIS
**#include <notcurses.h>**
**#include <notcurses/notcurses.h>**
**int notcurses_refresh(const struct notcurses* nc, int* restrict rows, int* restrict cols);**

View File

@ -8,7 +8,7 @@ notcurses_render - sync the physical display to the virtual ncplanes
# SYNOPSIS
**#include <notcurses.h>**
**#include <notcurses/notcurses.h>**
**int notcurses_render(struct notcurses* nc);**

View File

@ -8,7 +8,7 @@ notcurses_selector - high level widget for selecting from a set
# SYNOPSIS
**#include <notcurses.h>**
**#include <notcurses/notcurses.h>**
```c
**struct ncinput;**

View File

@ -8,7 +8,7 @@ notcurses_stats - notcurses runtime statistics
# SYNOPSIS
**#include <notcurses.h>**
**#include <notcurses/notcurses.h>**
```c
typedef struct ncstats {

View File

@ -8,7 +8,7 @@ notcurses_stdplane - acquire the standard ncplane
## SYNOPSIS
**#include <notcurses.h>**
**#include <notcurses/notcurses.h>**
**struct ncplane* notcurses_stdplane(struct notcurses* nc);**

View File

@ -8,7 +8,7 @@ notcurses_stop - free up resources and restore initial terminal state
# SYNOPSIS
**#include <notcurses.h>**
**#include <notcurses/notcurses.h>**
**int notcurses_stop(struct notcurses* nc);**