diff --git a/reactos/lib/msvcrt/conio/cgets.c b/reactos/lib/msvcrt/conio/cgets.c index cf06ddfc527..dfdb99bf1b0 100644 --- a/reactos/lib/msvcrt/conio/cgets.c +++ b/reactos/lib/msvcrt/conio/cgets.c @@ -1,7 +1,14 @@ +/* + * COPYRIGHT: See COPYING in the top level directory + * PROJECT: ReactOS kernel + * FILE: msvcrt/conio/cgets.c + * PURPOSE: C Runtime + * PROGRAMMER: Eric Kohl (Imported from DJGPP) + */ + #include #include - /* * @implemented */ diff --git a/reactos/lib/msvcrt/conio/cprintf.c b/reactos/lib/msvcrt/conio/cprintf.c index b668157a39d..b8e487edca3 100644 --- a/reactos/lib/msvcrt/conio/cprintf.c +++ b/reactos/lib/msvcrt/conio/cprintf.c @@ -1,3 +1,11 @@ +/* + * COPYRIGHT: See COPYING in the top level directory + * PROJECT: ReactOS kernel + * FILE: msvcrt/conio/cprintf.c + * PURPOSE: C Runtime + * PROGRAMMER: Eric Kohl (Imported from DJGPP) + */ + #include #include diff --git a/reactos/lib/msvcrt/conio/cscanf.c b/reactos/lib/msvcrt/conio/cscanf.c index 4839931aef7..f508c18d212 100644 --- a/reactos/lib/msvcrt/conio/cscanf.c +++ b/reactos/lib/msvcrt/conio/cscanf.c @@ -1,3 +1,11 @@ +/* + * COPYRIGHT: See COPYING in the top level directory + * PROJECT: ReactOS kernel + * FILE: msvcrt/conio/cscanf.c + * PURPOSE: C Runtime + * PROGRAMMER: Eric Kohl (Imported from DJGPP) + */ + #include #include #include diff --git a/reactos/lib/msvcrt/ctype/ctype.c b/reactos/lib/msvcrt/ctype/ctype.c index 5861d6d6494..3c88c06e704 100644 --- a/reactos/lib/msvcrt/ctype/ctype.c +++ b/reactos/lib/msvcrt/ctype/ctype.c @@ -1,4 +1,11 @@ -/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ +/* + * COPYRIGHT: See COPYING in the top level directory + * PROJECT: ReactOS kernel + * FILE: msvcrt/ctype/ctype.c + * PURPOSE: C Runtime + * PROGRAMMER: Copyright (C) 1995 DJ Delorie + */ + #include unsigned short _ctype[] = { diff --git a/reactos/lib/msvcrt/ctype/iscntrl.c b/reactos/lib/msvcrt/ctype/iscntrl.c index 164eb520a87..c7e64b861d9 100644 --- a/reactos/lib/msvcrt/ctype/iscntrl.c +++ b/reactos/lib/msvcrt/ctype/iscntrl.c @@ -1,6 +1,12 @@ -/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ -#include +/* + * COPYRIGHT: See COPYING in the top level directory + * PROJECT: ReactOS kernel + * FILE: msvcrt/ctype/iscntrl.c + * PURPOSE: C Runtime + * PROGRAMMER: Copyright (C) 1995 DJ Delorie + */ +#include #undef iscntrl /* diff --git a/reactos/lib/msvcrt/ctype/isctype.c b/reactos/lib/msvcrt/ctype/isctype.c index 15fb758a2af..7542a609d00 100644 --- a/reactos/lib/msvcrt/ctype/isctype.c +++ b/reactos/lib/msvcrt/ctype/isctype.c @@ -1,4 +1,11 @@ -/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ +/* + * COPYRIGHT: See COPYING in the top level directory + * PROJECT: ReactOS kernel + * FILE: msvcrt/ctype/isctype.c + * PURPOSE: C Runtime + * PROGRAMMER: Copyright (C) 1995 DJ Delorie + */ + #include diff --git a/reactos/lib/msvcrt/ctype/isdigit.c b/reactos/lib/msvcrt/ctype/isdigit.c index 9b1b7039e34..36783d43587 100644 --- a/reactos/lib/msvcrt/ctype/isdigit.c +++ b/reactos/lib/msvcrt/ctype/isdigit.c @@ -1,4 +1,11 @@ -/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ +/* + * COPYRIGHT: See COPYING in the top level directory + * PROJECT: ReactOS kernel + * FILE: msvcrt/ctype/isdigit.c + * PURPOSE: C Runtime + * PROGRAMMER: Copyright (C) 1995 DJ Delorie + */ + #include diff --git a/reactos/lib/msvcrt/ctype/isgraph.c b/reactos/lib/msvcrt/ctype/isgraph.c index 282cdd67820..9b614805a0f 100644 --- a/reactos/lib/msvcrt/ctype/isgraph.c +++ b/reactos/lib/msvcrt/ctype/isgraph.c @@ -1,4 +1,11 @@ -/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ +/* + * COPYRIGHT: See COPYING in the top level directory + * PROJECT: ReactOS kernel + * FILE: msvcrt/ctype/isgraph.c + * PURPOSE: C Runtime + * PROGRAMMER: Copyright (C) 1995 DJ Delorie + */ + #include #undef isgraph diff --git a/reactos/lib/msvcrt/ctype/islower.c b/reactos/lib/msvcrt/ctype/islower.c index 8c1766b535c..c91e5dde091 100644 --- a/reactos/lib/msvcrt/ctype/islower.c +++ b/reactos/lib/msvcrt/ctype/islower.c @@ -1,4 +1,11 @@ -/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ +/* + * COPYRIGHT: See COPYING in the top level directory + * PROJECT: ReactOS kernel + * FILE: msvcrt/ctype/islower.c + * PURPOSE: C Runtime + * PROGRAMMER: Copyright (C) 1995 DJ Delorie + */ + #include diff --git a/reactos/lib/msvcrt/ctype/isprint.c b/reactos/lib/msvcrt/ctype/isprint.c index 022d25dfa7a..1f234240254 100644 --- a/reactos/lib/msvcrt/ctype/isprint.c +++ b/reactos/lib/msvcrt/ctype/isprint.c @@ -1,4 +1,11 @@ -/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ +/* + * COPYRIGHT: See COPYING in the top level directory + * PROJECT: ReactOS kernel + * FILE: msvcrt/ctype/isprint.c + * PURPOSE: C Runtime + * PROGRAMMER: Copyright (C) 1995 DJ Delorie + */ + #include #undef isprint diff --git a/reactos/lib/msvcrt/ctype/ispunct.c b/reactos/lib/msvcrt/ctype/ispunct.c index 8d8a3188195..51fe12e3693 100644 --- a/reactos/lib/msvcrt/ctype/ispunct.c +++ b/reactos/lib/msvcrt/ctype/ispunct.c @@ -1,6 +1,12 @@ -/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ -#include +/* + * COPYRIGHT: See COPYING in the top level directory + * PROJECT: ReactOS kernel + * FILE: msvcrt/ctype/ispunct.c + * PURPOSE: C Runtime + * PROGRAMMER: Copyright (C) 1995 DJ Delorie + */ +#include #undef ispunct /* diff --git a/reactos/lib/msvcrt/ctype/isupper.c b/reactos/lib/msvcrt/ctype/isupper.c index bf23386208f..6e090255de9 100644 --- a/reactos/lib/msvcrt/ctype/isupper.c +++ b/reactos/lib/msvcrt/ctype/isupper.c @@ -1,6 +1,12 @@ -/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ -#include +/* + * COPYRIGHT: See COPYING in the top level directory + * PROJECT: ReactOS kernel + * FILE: msvcrt/ctype/isupper.c + * PURPOSE: C Runtime + * PROGRAMMER: Copyright (C) 1995 DJ Delorie + */ +#include #undef isupper /* diff --git a/reactos/lib/msvcrt/ctype/isxdigit.c b/reactos/lib/msvcrt/ctype/isxdigit.c index dbe269d4ee8..3490c07924f 100644 --- a/reactos/lib/msvcrt/ctype/isxdigit.c +++ b/reactos/lib/msvcrt/ctype/isxdigit.c @@ -1,6 +1,12 @@ -/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ -#include +/* + * COPYRIGHT: See COPYING in the top level directory + * PROJECT: ReactOS kernel + * FILE: msvcrt/ctype/isxdigit.c + * PURPOSE: C Runtime + * PROGRAMMER: Copyright (C) 1995 DJ Delorie + */ +#include #undef isxdigit /* diff --git a/reactos/lib/msvcrt/ctype/toascii.c b/reactos/lib/msvcrt/ctype/toascii.c index 9330cf73890..8ad09e23c83 100644 --- a/reactos/lib/msvcrt/ctype/toascii.c +++ b/reactos/lib/msvcrt/ctype/toascii.c @@ -1,8 +1,13 @@ -/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ +/* + * COPYRIGHT: See COPYING in the top level directory + * PROJECT: ReactOS kernel + * FILE: msvcrt/ctype/toascii.c + * PURPOSE: C Runtime + * PROGRAMMER: Copyright (C) 1995 DJ Delorie + */ #include - /* * @implemented */ diff --git a/reactos/lib/msvcrt/ctype/tolower.c b/reactos/lib/msvcrt/ctype/tolower.c index 34ceb9785fc..48c8788020f 100644 --- a/reactos/lib/msvcrt/ctype/tolower.c +++ b/reactos/lib/msvcrt/ctype/tolower.c @@ -1,4 +1,11 @@ -/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ +/* + * COPYRIGHT: See COPYING in the top level directory + * PROJECT: ReactOS kernel + * FILE: msvcrt/ctype/tolower.c + * PURPOSE: C Runtime + * PROGRAMMER: Copyright (C) 1995 DJ Delorie + */ + #include #undef tolower diff --git a/reactos/lib/msvcrt/ctype/toupper.c b/reactos/lib/msvcrt/ctype/toupper.c index 52c10c6f2a1..7e21e65e226 100644 --- a/reactos/lib/msvcrt/ctype/toupper.c +++ b/reactos/lib/msvcrt/ctype/toupper.c @@ -1,6 +1,12 @@ -/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ -#include +/* + * COPYRIGHT: See COPYING in the top level directory + * PROJECT: ReactOS kernel + * FILE: msvcrt/ctype/toupper.c + * PURPOSE: C Runtime + * PROGRAMMER: Copyright (C) 1995 DJ Delorie + */ +#include #undef toupper /*