Corrections
authorJoey Schulze <joey@infodrom.org>
Mon, 10 Dec 2001 15:47:54 +0000 (15:47 +0000)
committerJoey Schulze <joey@infodrom.org>
Mon, 10 Dec 2001 15:47:54 +0000 (15:47 +0000)
man3/dysize.3

index 9a94d12..4a60f60 100644 (file)
 .\"
 .TH dysize 3
 .SH NAME
-dysize \- berechne die Anzahl der Tage in Jahr
+dysize \- Berechne die Anzahl der Tage in Jahr
 .SH SYNOPSIS
 .sp
 .BR "#define __USE_MISC"
 .br
 .BR "#include <time.h>
 .sp
-.BI "int dysize(year)"
+.BI "int dysize(int " year );
 .sp
 .SH DESCRIPTION
-Die Funktion ergibt 365 fuer normale Jahre und 366 fuer Schaltjahre.
-Die Berechnen der Schaltjahren durch:
+Die Funktion gibt 365 für normale Jahre und 366 für Schaltjahre zurück.
+Die Berechnung der Schaltjahre erfolgt durch:
 .br
 (year) %4 == 0 && ((year) %100 != 0 || (year) %400 == 0)
 .br
-Die Formel findet sich im Macro  __isleap(year), welches eberfalls in
+Die Formel findet sich im Macro  __isleap(year), welches ebenfalls in
 <time.h> definiert ist.
 
 .SH "SEE ALSO"
 .BR strftime (3),
-.BR time (3)
+.BR time (3).