Modified: trunk/reactos/lib/msvcrt/conio/cgets.c
Modified: trunk/reactos/lib/msvcrt/conio/cprintf.c
Modified: trunk/reactos/lib/msvcrt/conio/cscanf.c
Modified: trunk/reactos/lib/msvcrt/ctype/ctype.c
Modified: trunk/reactos/lib/msvcrt/ctype/iscntrl.c
Modified: trunk/reactos/lib/msvcrt/ctype/isctype.c
Modified: trunk/reactos/lib/msvcrt/ctype/isdigit.c
Modified: trunk/reactos/lib/msvcrt/ctype/isgraph.c
Modified: trunk/reactos/lib/msvcrt/ctype/islower.c
Modified: trunk/reactos/lib/msvcrt/ctype/isprint.c
Modified: trunk/reactos/lib/msvcrt/ctype/ispunct.c
Modified: trunk/reactos/lib/msvcrt/ctype/isupper.c
Modified: trunk/reactos/lib/msvcrt/ctype/isxdigit.c
Modified: trunk/reactos/lib/msvcrt/ctype/toascii.c
Modified: trunk/reactos/lib/msvcrt/ctype/tolower.c
Modified: trunk/reactos/lib/msvcrt/ctype/toupper.c
--- trunk/reactos/lib/msvcrt/conio/cgets.c 2005-01-13 23:47:10 UTC (rev 13036)
+++ trunk/reactos/lib/msvcrt/conio/cgets.c 2005-01-14 03:29:47 UTC (rev 13037)
@@ -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 <msvcrt/conio.h>
#include <msvcrt/stdlib.h>
-
/*
* @implemented
*/
--- trunk/reactos/lib/msvcrt/conio/cprintf.c 2005-01-13 23:47:10 UTC (rev 13036)
+++ trunk/reactos/lib/msvcrt/conio/cprintf.c 2005-01-14 03:29:47 UTC (rev 13037)
@@ -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 <msvcrt/stdio.h>
#include <msvcrt/conio.h>
--- trunk/reactos/lib/msvcrt/conio/cscanf.c 2005-01-13 23:47:10 UTC (rev 13036)
+++ trunk/reactos/lib/msvcrt/conio/cscanf.c 2005-01-14 03:29:47 UTC (rev 13037)
@@ -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 <msvcrt/conio.h>
#include <msvcrt/stdarg.h>
#include <msvcrt/stdio.h>
--- trunk/reactos/lib/msvcrt/ctype/ctype.c 2005-01-13 23:47:10 UTC (rev 13036)
+++ trunk/reactos/lib/msvcrt/ctype/ctype.c 2005-01-14 03:29:47 UTC (rev 13037)
@@ -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 <msvcrt/ctype.h>
unsigned short _ctype[] = {
--- trunk/reactos/lib/msvcrt/ctype/iscntrl.c 2005-01-13 23:47:10 UTC (rev 13036)
+++ trunk/reactos/lib/msvcrt/ctype/iscntrl.c 2005-01-14 03:29:47 UTC (rev 13037)
@@ -1,7 +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/iscntrl.c
+ * PURPOSE: C Runtime
+ * PROGRAMMER: Copyright (C) 1995 DJ Delorie
+ */
+
#include <msvcrt/ctype.h>
-
#undef iscntrl
/*
* @implemented
--- trunk/reactos/lib/msvcrt/ctype/isctype.c 2005-01-13 23:47:10 UTC (rev 13036)
+++ trunk/reactos/lib/msvcrt/ctype/isctype.c 2005-01-14 03:29:47 UTC (rev 13037)
@@ -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 <msvcrt/ctype.h>
--- trunk/reactos/lib/msvcrt/ctype/isdigit.c 2005-01-13 23:47:10 UTC (rev 13036)
+++ trunk/reactos/lib/msvcrt/ctype/isdigit.c 2005-01-14 03:29:47 UTC (rev 13037)
@@ -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 <msvcrt/ctype.h>
--- trunk/reactos/lib/msvcrt/ctype/isgraph.c 2005-01-13 23:47:10 UTC (rev 13036)
+++ trunk/reactos/lib/msvcrt/ctype/isgraph.c 2005-01-14 03:29:47 UTC (rev 13037)
@@ -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 <msvcrt/ctype.h>
#undef isgraph
--- trunk/reactos/lib/msvcrt/ctype/islower.c 2005-01-13 23:47:10 UTC (rev 13036)
+++ trunk/reactos/lib/msvcrt/ctype/islower.c 2005-01-14 03:29:47 UTC (rev 13037)
@@ -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 <msvcrt/ctype.h>
--- trunk/reactos/lib/msvcrt/ctype/isprint.c 2005-01-13 23:47:10 UTC (rev 13036)
+++ trunk/reactos/lib/msvcrt/ctype/isprint.c 2005-01-14 03:29:47 UTC (rev 13037)
@@ -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 <msvcrt/ctype.h>
#undef isprint
--- trunk/reactos/lib/msvcrt/ctype/ispunct.c 2005-01-13 23:47:10 UTC (rev 13036)
+++ trunk/reactos/lib/msvcrt/ctype/ispunct.c 2005-01-14 03:29:47 UTC (rev 13037)
@@ -1,7 +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/ispunct.c
+ * PURPOSE: C Runtime
+ * PROGRAMMER: Copyright (C) 1995 DJ Delorie
+ */
+
#include <msvcrt/ctype.h>
-
#undef ispunct
/*
* @implemented
--- trunk/reactos/lib/msvcrt/ctype/isupper.c 2005-01-13 23:47:10 UTC (rev 13036)
+++ trunk/reactos/lib/msvcrt/ctype/isupper.c 2005-01-14 03:29:47 UTC (rev 13037)
@@ -1,7 +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/isupper.c
+ * PURPOSE: C Runtime
+ * PROGRAMMER: Copyright (C) 1995 DJ Delorie
+ */
+
#include <msvcrt/ctype.h>
-
#undef isupper
/*
* @implemented
--- trunk/reactos/lib/msvcrt/ctype/isxdigit.c 2005-01-13 23:47:10 UTC (rev 13036)
+++ trunk/reactos/lib/msvcrt/ctype/isxdigit.c 2005-01-14 03:29:47 UTC (rev 13037)
@@ -1,7 +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/isxdigit.c
+ * PURPOSE: C Runtime
+ * PROGRAMMER: Copyright (C) 1995 DJ Delorie
+ */
+
#include <msvcrt/ctype.h>
-
#undef isxdigit
/*
* @implemented
--- trunk/reactos/lib/msvcrt/ctype/toascii.c 2005-01-13 23:47:10 UTC (rev 13036)
+++ trunk/reactos/lib/msvcrt/ctype/toascii.c 2005-01-14 03:29:47 UTC (rev 13037)
@@ -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 <msvcrt/ctype.h>
-
/*
* @implemented
*/
--- trunk/reactos/lib/msvcrt/ctype/tolower.c 2005-01-13 23:47:10 UTC (rev 13036)
+++ trunk/reactos/lib/msvcrt/ctype/tolower.c 2005-01-14 03:29:47 UTC (rev 13037)
@@ -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 <msvcrt/ctype.h>
#undef tolower
--- trunk/reactos/lib/msvcrt/ctype/toupper.c 2005-01-13 23:47:10 UTC (rev 13036)
+++ trunk/reactos/lib/msvcrt/ctype/toupper.c 2005-01-14 03:29:47 UTC (rev 13037)
@@ -1,7 +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/toupper.c
+ * PURPOSE: C Runtime
+ * PROGRAMMER: Copyright (C) 1995 DJ Delorie
+ */
+
#include <msvcrt/ctype.h>
-
#undef toupper
/*
* @implemented