diff options
Diffstat (limited to 'man/luxset.3')
-rw-r--r-- | man/luxset.3 | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/man/luxset.3 b/man/luxset.3 index 9ee7592..22824f3 100644 --- a/man/luxset.3 +++ b/man/luxset.3 @@ -15,7 +15,7 @@ .\" OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR .\" PERFORMANCE OF THIS SOFTWARE. .\" -.Dd $Mdocdate: October 1 2022 $ +.Dd $Mdocdate: October 12 2022 $ .Dt LUXSET 3 .Os .Sh NAME @@ -31,17 +31,17 @@ .Sh SYNOPSIS .In lux.h .Ft int -.Fn luxset "struct luxdisp *disp" "int n" +.Fn luxset "lux_t *disp" "int n" .Ft int -.Fn luxinc "struct luxdisp *disp" "int n" +.Fn luxinc "lux_t *disp" "int n" .Ft int -.Fn luxdec "struct luxdisp *disp" "int n" +.Fn luxdec "lux_t *disp" "int n" .Ft double -.Fn luxsetp "struct luxdisp *disp" "double p" +.Fn luxsetp "lux_t *disp" "double p" .Ft double -.Fn luxincp "struct luxdisp *disp" "double p" +.Fn luxincp "lux_t *disp" "double p" .Ft double -.Fn luxdecp "struct luxdisp *disp" "double p" +.Fn luxdecp "lux_t *disp" "double p" .Sh DESCRIPTION The .Fn luxset @@ -126,7 +126,7 @@ int main(int argc, char **argv) { int opt; - struct luxdisp disp; + lux_t disp; luxinit(&disp); while ((opt = getopt(argc, argv, ":i:d:")) != -1) { |