[CRT] Improve the FILE header section. Brought to you by Adam Stachowicz. CORE-10114

svn path=/trunk/; revision=69285
This commit is contained in:
Amine Khaldi 2015-09-19 13:50:57 +00:00
parent 9391f1ae05
commit 8346163901
117 changed files with 117 additions and 117 deletions

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
* FILE: msvcrt/conio/cgets.c * FILE: lib/sdk/crt/conio/cgets.c
* PURPOSE: C Runtime * PURPOSE: C Runtime
* PROGRAMMER: Eric Kohl (Imported from DJGPP) * PROGRAMMER: Eric Kohl (Imported from DJGPP)
*/ */

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: LGPL - See COPYING in the top level directory * COPYRIGHT: LGPL - See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/msvcrt/conio/cputs.c * FILE: lib/sdk/crt/conio/cputs.c
* PURPOSE: Writes a character to stdout * PURPOSE: Writes a character to stdout
* PROGRAMER: Aleksey Bragin * PROGRAMER: Aleksey Bragin
*/ */

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/msvcrt/conio/getch.c * FILE: lib/sdk/crt/conio/getch.c
* PURPOSE: Writes a character to stdout * PURPOSE: Writes a character to stdout
* PROGRAMER: Ariadne * PROGRAMER: Ariadne
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -2,7 +2,7 @@
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details * Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/msvcrt/conio/getche.c * FILE: lib/sdk/crt/conio/getche.c
* PURPOSE: Reads a character from stdin * PURPOSE: Reads a character from stdin
* PROGRAMER: DJ Delorie * PROGRAMER: DJ Delorie
Ariadne Ariadne

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/msvcrt/conio/kbhit.c * FILE: lib/sdk/crt/conio/kbhit.c
* PURPOSE: Checks for keyboard hits * PURPOSE: Checks for keyboard hits
* PROGRAMERS: Ariadne, Russell * PROGRAMERS: Ariadne, Russell
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/msvcrt/conio/putch.c * FILE: lib/sdk/crt/conio/putch.c
* PURPOSE: Writes a character to stdout * PURPOSE: Writes a character to stdout
* PROGRAMER: Ariadne * PROGRAMER: Ariadne
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -2,7 +2,7 @@
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details * Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/msvcrt/conio/ungetch.c * FILE: lib/sdk/crt/conio/ungetch.c
* PURPOSE: Ungets a character from stdin * PURPOSE: Ungets a character from stdin
* PROGRAMER: DJ Delorie * PROGRAMER: DJ Delorie
Ariadne [ Adapted from djgpp libc ] Ariadne [ Adapted from djgpp libc ]

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/crt/chdrive.c * FILE: lib/sdk/crt/direct/chdrive.c
* PURPOSE: Change the current drive. * PURPOSE: Change the current drive.
* PROGRAMER: WINE * PROGRAMER: WINE
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -2,7 +2,7 @@
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* PURPOSE: Implementation of _chkstk and _alloca_probe * PURPOSE: Implementation of _chkstk and _alloca_probe
* FILE: lib/sdk/crt/math/amd64/chkstk_asm.s * FILE: lib/sdk/crt/except/amd64/chkstk_asm.s
* PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org) * PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org)
*/ */

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS CRT * PROJECT: ReactOS CRT
* FILE: lib/crt/misc/i386/seh.S * FILE: lib/sdk/crt/except/amd64/seh.s
* PURPOSE: SEH Support for the CRT * PURPOSE: SEH Support for the CRT
* PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org) * PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)
*/ */

View file

@ -1,7 +1,7 @@
/* /*
* PROJECT: ReactOS Kernel * PROJECT: ReactOS Kernel
* LICENSE: GPL - See COPYING in the top level directory * LICENSE: GPL - See COPYING in the top level directory
* FILE: lib/sdk/crt/except/ehandler.c * FILE: lib/sdk/crt/except/arm/ehandler.c
* PURPOSE: Low level exception handler functions * PURPOSE: Low level exception handler functions
* PROGRAMMERS: Timo Kreuzer (timo.kreuzer@reactos.org) * PROGRAMMERS: Timo Kreuzer (timo.kreuzer@reactos.org)
*/ */

View file

@ -2,7 +2,7 @@
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
* PURPOSE: Stack checker * PURPOSE: Stack checker
* FILE: lib/ntdll/rtl/i386/chkstk.s * FILE: lib/sdk/crt/except/i386/chkstk_asm.s
* PROGRAMER: KJK::Hyperion <noog@libero.it> * PROGRAMER: KJK::Hyperion <noog@libero.it>
*/ */

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS CRT * PROJECT: ReactOS CRT
* FILE: lib/crt/misc/i386/prolog.s * FILE: lib/sdk/crt/except/i386/prolog.s
* PURPOSE: SEH Support for the CRT * PURPOSE: SEH Support for the CRT
* PROGRAMMERS: Wine Development Team * PROGRAMMERS: Wine Development Team
*/ */

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS CRT * PROJECT: ReactOS CRT
* FILE: lib/crt/misc/i386/seh.S * FILE: lib/sdk/crt/except/i386/seh.s
* PURPOSE: SEH Support for the CRT * PURPOSE: SEH Support for the CRT
* PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org) * PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)
*/ */

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: GNU GPL, see COPYING in the top level directory * COPYRIGHT: GNU GPL, see COPYING in the top level directory
* PROJECT: ReactOS CRT * PROJECT: ReactOS CRT
* FILE: lib/crt/misc/i386/seh_prolog.S * FILE: lib/sdk/crt/except/i386/seh_prolog.s
* PURPOSE: SEH Support for MSVC * PURPOSE: SEH Support for MSVC
* PROGRAMMERS: Timo Kreuzer * PROGRAMMERS: Timo Kreuzer
*/ */

View file

@ -2,7 +2,7 @@
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
* PURPOSE: Stack checker * PURPOSE: Stack checker
* FILE: lib/ntdll/rtl/i386/chkstk.s * FILE: lib/sdk/crt/except/powerpc/chkstk_asm.s
* PROGRAMER: arty * PROGRAMER: arty
*/ */

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS CRT * PROJECT: ReactOS CRT
* FILE: lib/crt/misc/i386/seh.S * FILE: lib/sdk/crt/except/powerpc/seh.s
* PURPOSE: SEH Support for the CRT * PURPOSE: SEH Support for the CRT
* PROGRAMMERS: arty * PROGRAMMERS: arty
*/ */

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/crt/?????? * FILE: lib/sdk/crt/float/chgsign.c
* PURPOSE: Unknown * PURPOSE: Unknown
* PROGRAMER: Unknown * PROGRAMER: Unknown
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/crt/?????? * FILE: lib/sdk/crt/float/copysign.c
* PURPOSE: Unknown * PURPOSE: Unknown
* PROGRAMER: Unknown * PROGRAMER: Unknown
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/crt/?????? * FILE: lib/sdk/crt/float/fpecode.c
* PURPOSE: Unknown * PURPOSE: Unknown
* PROGRAMER: Unknown * PROGRAMER: Unknown
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/crt/?????? * FILE: lib/sdk/crt/float/i386/clearfp.c
* PURPOSE: Unknown * PURPOSE: Unknown
* PROGRAMER: Unknown * PROGRAMER: Unknown
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/crt/?????? * FILE: lib/sdk/crt/float/i386/statfp.c
* PURPOSE: Unknown * PURPOSE: Unknown
* PROGRAMER: Unknown * PROGRAMER: Unknown
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/crt/?????? * FILE: lib/sdk/crt/float/nafter.c
* PURPOSE: Unknown * PURPOSE: Unknown
* PROGRAMER: Unknown * PROGRAMER: Unknown
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS CRT * PROJECT: ReactOS CRT
* FILE: lib/crt/math/acos.c * FILE: lib/sdk/crt/math/amd64/asin.c
* PURPOSE: Generic C implementation of arc sine * PURPOSE: Generic C implementation of arc sine
* PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org) * PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org)
*/ */

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: BSD - See COPYING.ARM in the top level directory * COPYRIGHT: BSD - See COPYING.ARM in the top level directory
* PROJECT: ReactOS CRT library * PROJECT: ReactOS CRT library
* FILE: lib/sdk/crt/math/arm/__rt_udiv.c * FILE: lib/sdk/crt/math/arm/__rt_div.c
* PURPOSE: Implementation of __rt_udiv * PURPOSE: Implementation of __rt_udiv
* PROGRAMMER: Timo Kreuzer * PROGRAMMER: Timo Kreuzer
* REFERENCE: http://research.microsoft.com/en-us/um/redmond/projects/invisible/src/crt/md/arm/_div10.s.htm * REFERENCE: http://research.microsoft.com/en-us/um/redmond/projects/invisible/src/crt/md/arm/_div10.s.htm

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: BSD - See COPYING.ARM in the top level directory * COPYRIGHT: BSD - See COPYING.ARM in the top level directory
* PROJECT: ReactOS CRT library * PROJECT: ReactOS CRT library
* FILE: lib/sdk/crt/math/arm/__rt_udiv.c * FILE: lib/sdk/crt/math/arm/__rt_div_worker.h
* PURPOSE: Implementation of __rt_udiv * PURPOSE: Implementation of __rt_udiv
* PROGRAMMER: Timo Kreuzer * PROGRAMMER: Timo Kreuzer
* REFERENCE: http://research.microsoft.com/pubs/70645/tr-2008-141.pdf * REFERENCE: http://research.microsoft.com/pubs/70645/tr-2008-141.pdf

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: BSD - See COPYING.ARM in the top level directory * COPYRIGHT: BSD - See COPYING.ARM in the top level directory
* PROJECT: ReactOS CRT library * PROJECT: ReactOS CRT library
* FILE: lib/sdk/crt/math/arm/__rt_sdiv_worker.c * FILE: lib/sdk/crt/math/arm/__rt_sdiv64_worker.c
* PURPOSE: Implementation of __rt_sdiv_worker * PURPOSE: Implementation of __rt_sdiv_worker
* PROGRAMMER: Timo Kreuzer * PROGRAMMER: Timo Kreuzer
* REFERENCE: http://research.microsoft.com/en-us/um/redmond/projects/invisible/src/crt/md/arm/_div10.s.htm * REFERENCE: http://research.microsoft.com/en-us/um/redmond/projects/invisible/src/crt/md/arm/_div10.s.htm

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS CRT * PROJECT: ReactOS CRT
* FILE: lib/crt/math/cos.c * FILE: lib/sdk/crt/math/cos.c
* PURPOSE: Generic C Implementation of cos * PURPOSE: Generic C Implementation of cos
* PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org) * PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org)
*/ */

View file

@ -2,7 +2,7 @@
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
* PURPOSE: Run-Time Library * PURPOSE: Run-Time Library
* FILE: lib/rtl/i386/alldiv_asm.S * FILE: lib/sdk/crt/math/i386/alldiv_asm.s
* PROGRAMER: Alex Ionescu (alex@relsoft.net) * PROGRAMER: Alex Ionescu (alex@relsoft.net)
* *
* Copyright (C) 2002 Michael Ringgaard. * Copyright (C) 2002 Michael Ringgaard.

View file

@ -2,7 +2,7 @@
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
* PURPOSE: Run-Time Library * PURPOSE: Run-Time Library
* FILE: lib/rtl/i386/alldvrm.S * FILE: lib/sdk/crt/math/i386/alldvrm_asm.s
* PROGRAMER: Alex Ionescu (alex@relsoft.net) * PROGRAMER: Alex Ionescu (alex@relsoft.net)
* *
* Copyright (C) 2002 Michael Ringgaard. * Copyright (C) 2002 Michael Ringgaard.

View file

@ -2,7 +2,7 @@
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
* PURPOSE: Run-Time Library * PURPOSE: Run-Time Library
* FILE: lib/rtl/i386/allmul.S * FILE: lib/sdk/crt/math/i386/allmul_asm.s
* PROGRAMER: Alex Ionescu (alex@relsoft.net) * PROGRAMER: Alex Ionescu (alex@relsoft.net)
* *
* Copyright (C) 2002 Michael Ringgaard. * Copyright (C) 2002 Michael Ringgaard.

View file

@ -2,7 +2,7 @@
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
* PURPOSE: Run-Time Library * PURPOSE: Run-Time Library
* FILE: lib/rtl/i386/allrem.S * FILE: lib/sdk/crt/math/i386/allrem_asm.s
* PROGRAMER: Alex Ionescu (alex@relsoft.net) * PROGRAMER: Alex Ionescu (alex@relsoft.net)
* *
* Copyright (C) 2002 Michael Ringgaard. * Copyright (C) 2002 Michael Ringgaard.

View file

@ -2,7 +2,7 @@
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
* PURPOSE: Run-Time Library * PURPOSE: Run-Time Library
* FILE: lib/rtl/i386/allshl.S * FILE: lib/sdk/crt/math/i386/allshl_asm.s
* PROGRAMER: Alex Ionescu (alex@relsoft.net) * PROGRAMER: Alex Ionescu (alex@relsoft.net)
* *
* Copyright (C) 2002 Michael Ringgaard. * Copyright (C) 2002 Michael Ringgaard.

View file

@ -2,7 +2,7 @@
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
* PURPOSE: Run-Time Library * PURPOSE: Run-Time Library
* FILE: lib/rtl/i386/allshr.S * FILE: lib/sdk/crt/math/i386/allshr_asm.s
* PROGRAMER: Alex Ionescu (alex@relsoft.net) * PROGRAMER: Alex Ionescu (alex@relsoft.net)
* *
* Copyright (C) 2002 Michael Ringgaard. * Copyright (C) 2002 Michael Ringgaard.

View file

@ -2,7 +2,7 @@
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
* PURPOSE: Run-Time Library * PURPOSE: Run-Time Library
* FILE: lib/rtl/i386/atan.S * FILE: lib/sdk/crt/math/i386/atan_asm.s
* PROGRAMER: Alex Ionescu (alex@relsoft.net) * PROGRAMER: Alex Ionescu (alex@relsoft.net)
* *
* Copyright (C) 2002 Michael Ringgaard. * Copyright (C) 2002 Michael Ringgaard.

View file

@ -2,7 +2,7 @@
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
* PURPOSE: Run-Time Library * PURPOSE: Run-Time Library
* FILE: lib/rtl/i386/aulldiv_asm.S * FILE: lib/sdk/crt/math/i386/aulldiv_asm.s
* PROGRAMER: Alex Ionescu (alex@relsoft.net) * PROGRAMER: Alex Ionescu (alex@relsoft.net)
* *
* Copyright (C) 2002 Michael Ringgaard. * Copyright (C) 2002 Michael Ringgaard.

View file

@ -2,7 +2,7 @@
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
* PURPOSE: Run-Time Library * PURPOSE: Run-Time Library
* FILE: lib/rtl/i386/aulldvrm.S * FILE: lib/sdk/crt/math/i386/aulldvrm_asm.s
* PROGRAMER: Alex Ionescu (alex@relsoft.net) * PROGRAMER: Alex Ionescu (alex@relsoft.net)
* *
* Copyright (C) 2002 Michael Ringgaard. * Copyright (C) 2002 Michael Ringgaard.

View file

@ -2,7 +2,7 @@
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
* PURPOSE: Run-Time Library * PURPOSE: Run-Time Library
* FILE: lib/rtl/i386/aullrem.S * FILE: lib/sdk/crt/math/i386/aullrem_asm.s
* PROGRAMER: Alex Ionescu (alex@relsoft.net) * PROGRAMER: Alex Ionescu (alex@relsoft.net)
* *
* Copyright (C) 2002 Michael Ringgaard. * Copyright (C) 2002 Michael Ringgaard.

View file

@ -2,7 +2,7 @@
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
* PURPOSE: Run-Time Library * PURPOSE: Run-Time Library
* FILE: lib/rtl/i386/uallshr.S * FILE: lib/sdk/crt/math/i386/aullshr_asm.s
* PROGRAMER: Alex Ionescu (alex@relsoft.net) * PROGRAMER: Alex Ionescu (alex@relsoft.net)
* *
* Copyright (C) 2002 Michael Ringgaard. * Copyright (C) 2002 Michael Ringgaard.

View file

@ -2,7 +2,7 @@
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
* PURPOSE: Run-Time Library * PURPOSE: Run-Time Library
* FILE: lib/rtl/i386/ceil.S * FILE: lib/sdk/crt/math/i386/ceil_asm.s
* PROGRAMER: Alex Ionescu (alex@relsoft.net) * PROGRAMER: Alex Ionescu (alex@relsoft.net)
* *
* Copyright (C) 2002 Michael Ringgaard. * Copyright (C) 2002 Michael Ringgaard.

View file

@ -2,7 +2,7 @@
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
* PURPOSE: Run-Time Library * PURPOSE: Run-Time Library
* FILE: lib/rtl/i386/cos.S * FILE: lib/sdk/crt/math/i386/cos_asm.s
* PROGRAMER: Alex Ionescu (alex@relsoft.net) * PROGRAMER: Alex Ionescu (alex@relsoft.net)
* *
* Copyright (C) 2002 Michael Ringgaard. * Copyright (C) 2002 Michael Ringgaard.

View file

@ -2,7 +2,7 @@
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
* PURPOSE: Run-Time Library * PURPOSE: Run-Time Library
* FILE: lib/rtl/i386/fabs.S * FILE: lib/sdk/crt/math/i386/fabs_asm.s
* PROGRAMER: Alex Ionescu (alex@relsoft.net) * PROGRAMER: Alex Ionescu (alex@relsoft.net)
* *
* Copyright (C) 2002 Michael Ringgaard. * Copyright (C) 2002 Michael Ringgaard.

View file

@ -2,7 +2,7 @@
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
* PURPOSE: Run-Time Library * PURPOSE: Run-Time Library
* FILE: lib/rtl/i386/floor.S * FILE: lib/sdk/crt/math/i386/floor_asm.s
* PROGRAMER: Alex Ionescu (alex@relsoft.net) * PROGRAMER: Alex Ionescu (alex@relsoft.net)
* *
* Copyright (C) 2002 Michael Ringgaard. * Copyright (C) 2002 Michael Ringgaard.

View file

@ -2,7 +2,7 @@
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
* PURPOSE: Run-Time Library * PURPOSE: Run-Time Library
* FILE: lib/rtl/i386/ftol2.S * FILE: lib/sdk/crt/math/i386/ftol2_asm.s
* PROGRAMER: * PROGRAMER:
* *
*/ */

View file

@ -2,7 +2,7 @@
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
* PURPOSE: Run-Time Library * PURPOSE: Run-Time Library
* FILE: lib/rtl/i386/ftol.S * FILE: lib/sdk/crt/math/i386/ftol_asm.s
* PROGRAMER: Alex Ionescu (alex@relsoft.net) * PROGRAMER: Alex Ionescu (alex@relsoft.net)
* *
* Copyright (C) 2002 Michael Ringgaard. * Copyright (C) 2002 Michael Ringgaard.

View file

@ -3,7 +3,7 @@
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
* PURPOSE: * PURPOSE:
* FILE: * FILE: lib/sdk/crt/math/i386/log10_asm.s
* PROGRAMER: Magnus Olsen (magnus@greatlord.com) * PROGRAMER: Magnus Olsen (magnus@greatlord.com)
* *
*/ */

View file

@ -2,7 +2,7 @@
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
* PURPOSE: Run-Time Library * PURPOSE: Run-Time Library
* FILE: lib/rtl/i386/log.S * FILE: lib/sdk/crt/math/i386/log_asm.s
* PROGRAMER: Alex Ionescu (alex@relsoft.net) * PROGRAMER: Alex Ionescu (alex@relsoft.net)
* *
* Copyright (C) 2002 Michael Ringgaard. * Copyright (C) 2002 Michael Ringgaard.

View file

@ -2,7 +2,7 @@
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
* PURPOSE: Run-Time Library * PURPOSE: Run-Time Library
* FILE: lib/rtl/i386/sin.S * FILE: lib/sdk/crt/math/i386/sin_asm.s
* PROGRAMER: Alex Ionescu (alex@relsoft.net) * PROGRAMER: Alex Ionescu (alex@relsoft.net)
* *
* Copyright (C) 2002 Michael Ringgaard. * Copyright (C) 2002 Michael Ringgaard.

View file

@ -2,7 +2,7 @@
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
* PURPOSE: Run-Time Library * PURPOSE: Run-Time Library
* FILE: lib/rtl/i386/sqrt.S * FILE: lib/sdk/crt/math/i386/sqrt_asm.s
* PROGRAMER: Alex Ionescu (alex@relsoft.net) * PROGRAMER: Alex Ionescu (alex@relsoft.net)
* *
* Copyright (C) 2002 Michael Ringgaard. * Copyright (C) 2002 Michael Ringgaard.

View file

@ -2,7 +2,7 @@
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
* PURPOSE: Run-Time Library * PURPOSE: Run-Time Library
* FILE: lib/rtl/i386/tan.S * FILE: lib/sdk/crt/math/i386/tan_asm.s
* PROGRAMER: Alex Ionescu (alex@relsoft.net) * PROGRAMER: Alex Ionescu (alex@relsoft.net)
* *
* Copyright (C) 2002 Michael Ringgaard. * Copyright (C) 2002 Michael Ringgaard.

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS CRT * PROJECT: ReactOS CRT
* FILE: lib/crt/math/sin.c * FILE: lib/sdk/crt/math/sin.c
* PURPOSE: Generic C Implementation of sin * PURPOSE: Generic C Implementation of sin
* PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org) * PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org)
*/ */

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/msvcrt/mbstring/hanzen.c * FILE: lib/sdk/crt/mbstring/hanzen.c
* PURPOSE: Multibyte conversion routines formerly called hantozen and zentohan * PURPOSE: Multibyte conversion routines formerly called hantozen and zentohan
* PROGRAMER: Ariadne, Taiji Yamada * PROGRAMER: Ariadne, Taiji Yamada
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/sdk/crt/mbstring/ishwr.c * FILE: lib/sdk/crt/mbstring/islwr.c
* PURPOSE: * PURPOSE:
* PROGRAMER: * PROGRAMER:
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/msvcrt/mbstring/ismbal.c * FILE: lib/sdk/crt/mbstring/ismbal.c
* PURPOSE: Checks for alphabetic multibyte character * PURPOSE: Checks for alphabetic multibyte character
* PROGRAMER: Ariadne * PROGRAMER: Ariadne
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/msvcrt/mbstring/mbscoll.c * FILE: lib/sdk/crt/mbstring/mbscoll.c
* PURPOSE: * PURPOSE:
* PROGRAMER: Ariadne * PROGRAMER: Ariadne
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/sdk/crt/mbstring/mbscpn.c * FILE: lib/sdk/crt/mbstring/mbscspn.c
* PURPOSE: * PURPOSE:
* PROGRAMER: * PROGRAMER:
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/msvcrt/mbstring/mbsdup.c * FILE: lib/sdk/crt/mbstring/mbsdup.c
* PURPOSE: Duplicates a multi byte string * PURPOSE: Duplicates a multi byte string
* PROGRAMER: Ariadne * PROGRAMER: Ariadne
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/msvcrt/mbstring/mbsicmp.c * FILE: lib/sdk/crt/mbstring/mbsicmp.c
* PURPOSE: Duplicates a multi byte string * PURPOSE: Duplicates a multi byte string
* PROGRAMER: Ariadne * PROGRAMER: Ariadne
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/msvcrt/mbstring/mbsicoll.c * FILE: lib/sdk/crt/mbstring/mbsicoll.c
* PURPOSE: * PURPOSE:
* PROGRAMER: Ariadne * PROGRAMER: Ariadne
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/msvcrt/mbstring/mbsncat.c * FILE: lib/sdk/crt/mbstring/mbsncat.c
* PURPOSE: Concatenate two multi byte string to maximum of n characters or bytes * PURPOSE: Concatenate two multi byte string to maximum of n characters or bytes
* PROGRAMER: Ariadne * PROGRAMER: Ariadne
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/msvcrt/mbstring/mbsncmp.c * FILE: lib/sdk/crt/mbstring/mbsncmp.c
* PURPOSE: Compares two strings to a maximum of n bytes or characters * PURPOSE: Compares two strings to a maximum of n bytes or characters
* PROGRAMER: Ariadne * PROGRAMER: Ariadne
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/msvcrt/mbstring/mbsncoll.c * FILE: lib/sdk/crt/mbstring/mbsncoll.c
* PURPOSE: * PURPOSE:
* PROGRAMER: Ariadne * PROGRAMER: Ariadne
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/msvcrt/mbstring/mbsncpy.c * FILE: lib/sdk/crt/mbstring/mbsncpy.c
* PURPOSE: Copies a string to a maximum of n bytes or characters * PURPOSE: Copies a string to a maximum of n bytes or characters
* PROGRAMERS: * PROGRAMERS:
* Copyright 1999 Ariadne * Copyright 1999 Ariadne

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/msvcrt/mbstring/mbsnset.c * FILE: lib/sdk/crt/mbstring/mbsnset.c
* PURPOSE: Fills a string with a multibyte character * PURPOSE: Fills a string with a multibyte character
* PROGRAMER: Ariadne * PROGRAMER: Ariadne
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/msvcrt/mbstring/mbsrchr.c * FILE: lib/sdk/crt/mbstring/mbsrchr.c
* PURPOSE: Searches for a character in reverse * PURPOSE: Searches for a character in reverse
* PROGRAMER: Ariadne * PROGRAMER: Ariadne
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/msvcrt/mbstring/mbsset.c * FILE: lib/sdk/crt/mbstring/mbsset.c
* PURPOSE: Fills a string with a multibyte character * PURPOSE: Fills a string with a multibyte character
* PROGRAMER: Ariadne * PROGRAMER: Ariadne
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/sdk/crt/mbstring/ismbpun.c * FILE: lib/sdk/crt/mbstring/mbsspn.c
* PURPOSE: * PURPOSE:
* PROGRAMER: * PROGRAMER:
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/msvcrt/mbstring/mbsupr.c * FILE: lib/sdk/crt/mbstring/mbsupr.c
* PURPOSE: * PURPOSE:
* PROGRAMER: Ariadne * PROGRAMER: Ariadne
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
* FILE: lib/sdk/crt/mem/i386/memchr.s * FILE: lib/sdk/crt/mem/i386/memchr_asm.s
*/ */
#include <asm.inc> #include <asm.inc>

View file

@ -1,7 +1,7 @@
/* /*
* PROJECT: ReactOS C runtime library * PROJECT: ReactOS C runtime library
* LICENSE: BSD - See COPYING.ARM in the top level directory * LICENSE: BSD - See COPYING.ARM in the top level directory
* FILE: lib/sdk/crt/__crt_MessageBoxA.c * FILE: lib/sdk/crt/misc/__crt_MessageBoxA.c
* PURPOSE: __crt_MessageBoxA implementation * PURPOSE: __crt_MessageBoxA implementation
* PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org) * PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org)
*/ */

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/msvcrt/misc/amsg.c * FILE: lib/sdk/crt/misc/amsg.c
* PURPOSE: Print runtime error messages * PURPOSE: Print runtime error messages
* PROGRAMER: Ariadne * PROGRAMER: Ariadne
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -1,7 +1,7 @@
/* /*
* PROJECT: ReactOS C runtime library * PROJECT: ReactOS C runtime library
* LICENSE: BSD - See COPYING.ARM in the top level directory * LICENSE: BSD - See COPYING.ARM in the top level directory
* FILE: lib/sdk/crt/assert.c * FILE: lib/sdk/crt/misc/assert.c
* PURPOSE: _assert implementation * PURPOSE: _assert implementation
* PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org) * PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org)
*/ */

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: GNU GPL, see COPYING in the top level directory * COPYRIGHT: GNU GPL, see COPYING in the top level directory
* PROJECT: ReactOS crt library * PROJECT: ReactOS crt library
* FILE: lib/sdk/crt/printf/swprintf.c * FILE: lib/sdk/crt/printf/_sxprintf.c
* PURPOSE: Implementation of swprintf * PURPOSE: Implementation of swprintf
* PROGRAMMER: Timo Kreuzer * PROGRAMMER: Timo Kreuzer
*/ */

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: GNU GPL, see COPYING in the top level directory * COPYRIGHT: GNU GPL, see COPYING in the top level directory
* PROJECT: ReactOS crt library * PROJECT: ReactOS crt library
* FILE: lib/sdk/crt/printf/_vscprintf.c * FILE: lib/sdk/crt/printf/_vscwprintf.c
* PURPOSE: Implementation of _vscprintf * PURPOSE: Implementation of _vscprintf
*/ */

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: GNU GPL, see COPYING in the top level directory * COPYRIGHT: GNU GPL, see COPYING in the top level directory
* PROJECT: ReactOS crt library * PROJECT: ReactOS crt library
* FILE: lib/sdk/crt/printf/vfwprintf.c * FILE: lib/sdk/crt/printf/vfwprintf_s.c
* PURPOSE: Implementation of vfwprintf * PURPOSE: Implementation of vfwprintf
* PROGRAMMER: Timo Kreuzer * PROGRAMMER: Timo Kreuzer
* Samuel Serapión * Samuel Serapión

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: GNU GPL, see COPYING in the top level directory * COPYRIGHT: GNU GPL, see COPYING in the top level directory
* PROJECT: ReactOS crt library * PROJECT: ReactOS crt library
* FILE: lib/sdk/crt/printf/vprintf.c * FILE: lib/sdk/crt/printf/vprintf_s.c
* PURPOSE: Implementation of vprintf * PURPOSE: Implementation of vprintf
* PROGRAMMER: Samuel Serapión * PROGRAMMER: Samuel Serapión
*/ */

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: GNU GPL, see COPYING in the top level directory * COPYRIGHT: GNU GPL, see COPYING in the top level directory
* PROJECT: ReactOS crt library * PROJECT: ReactOS crt library
* FILE: lib/sdk/crt/printf/vwprintf.c * FILE: lib/sdk/crt/printf/vwprintf_s.c
* PURPOSE: Implementation of vwprintf * PURPOSE: Implementation of vwprintf
* PROGRAMMER: Samuel Serapión * PROGRAMMER: Samuel Serapión
*/ */

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: GNU GPL, see COPYING in the top level directory * COPYRIGHT: GNU GPL, see COPYING in the top level directory
* PROJECT: ReactOS crt library * PROJECT: ReactOS crt library
* FILE: lib/sdk/crt/printf/wprintf.c * FILE: lib/sdk/crt/printf/wprintf_s.c
* PURPOSE: Implementation of wprintf * PURPOSE: Implementation of wprintf
* PROGRAMMER: Samuel Serapión * PROGRAMMER: Samuel Serapión
*/ */

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/msvcrt/process/cwait.c * FILE: lib/sdk/crt/process/_cwait.c
* PURPOSE: Waits for a process to exit * PURPOSE: Waits for a process to exit
*/ */

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/msvcrt/process/system.c * FILE: lib/sdk/crt/process/_system.c
* PURPOSE: Excutes a shell command * PURPOSE: Excutes a shell command
* PROGRAMER: Ariadne * PROGRAMER: Ariadne
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/msvcrt/process/dll.c * FILE: lib/sdk/crt/process/dll.c
* PURPOSE: Dll support routines * PURPOSE: Dll support routines
* PROGRAMER: Ariadne * PROGRAMER: Ariadne
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -2,7 +2,7 @@
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* PURPOSE: Implementation of _setjmp/longjmp * PURPOSE: Implementation of _setjmp/longjmp
* FILE: lib/msvcrt/i386/setjmp.s * FILE: lib/sdk/crt/setjmp/i386/setjmp.s
* PROGRAMMER: Ge van Geldorp (ge@gse.nl) * PROGRAMMER: Ge van Geldorp (ge@gse.nl)
* NOTES: Implementation is not complete, see Wine source for a more * NOTES: Implementation is not complete, see Wine source for a more
* complete implementation * complete implementation

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: GNU GPL, see COPYING in the top level directory * COPYRIGHT: GNU GPL, see COPYING in the top level directory
* PROJECT: ReactOS crt library * PROJECT: ReactOS crt library
* FILE: lib/sdk/crt/stdio/_flswbuf * FILE: lib/sdk/crt/stdio/_flswbuf.c
* PURPOSE: Implementation of _flswbuf * PURPOSE: Implementation of _flswbuf
* PROGRAMMER: Timo Kreuzer * PROGRAMMER: Timo Kreuzer
*/ */

View file

@ -1,7 +1,7 @@
/* /*
* PROJECT: ReactOS C runtime library * PROJECT: ReactOS C runtime library
* LICENSE: BSD - See COPYING.ARM in the top level directory * LICENSE: BSD - See COPYING.ARM in the top level directory
* FILE: lib/sdk/crt/_set_abort_behavior.c * FILE: lib/sdk/crt/stdlib/_set_abort_behavior.c
* PURPOSE: _set_abort_behavior implementation * PURPOSE: _set_abort_behavior implementation
* PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org) * PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org)
*/ */

View file

@ -1,7 +1,7 @@
/* /*
* PROJECT: ReactOS C runtime library * PROJECT: ReactOS C runtime library
* LICENSE: BSD - See COPYING.ARM in the top level directory * LICENSE: BSD - See COPYING.ARM in the top level directory
* FILE: lib/sdk/crt/abort.c * FILE: lib/sdk/crt/stdlib/abort.c
* PURPOSE: abort implementation * PURPOSE: abort implementation
* PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org) * PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org)
*/ */

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/crt/errno.c * FILE: lib/sdk/crt/stdlib/errno.c
* PURPOSE: Unknown * PURPOSE: Unknown
* PROGRAMER: Unknown * PROGRAMER: Unknown
* *

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/crt/?????? * FILE: lib/sdk/crt/stdlib/getenv.c
* PURPOSE: Unknown * PURPOSE: Unknown
* PROGRAMER: Unknown * PROGRAMER: Unknown
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/crt/?????? * FILE: lib/sdk/crt/stdlib/mbtowc.c
* PURPOSE: Unknown * PURPOSE: Unknown
* PROGRAMER: Unknown * PROGRAMER: Unknown
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/crt/?????? * FILE: lib/sdk/crt/stdlib/putenv.c
* PURPOSE: Unknown * PURPOSE: Unknown
* PROGRAMER: Unknown * PROGRAMER: Unknown
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/msvcrt/stdlib/rot.c * FILE: lib/sdk/crt/stdlib/rot.c
* PURPOSE: Performs a bitwise rotation * PURPOSE: Performs a bitwise rotation
* PROGRAMER: Ariadne * PROGRAMER: Ariadne
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/crt/?????? * FILE: lib/sdk/crt/stdlib/senv.c
* PURPOSE: Unknown * PURPOSE: Unknown
* PROGRAMER: Unknown * PROGRAMER: Unknown
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/crt/?????? * FILE: lib/sdk/crt/stdlib/swab.c
* PURPOSE: Unknown * PURPOSE: Unknown
* PROGRAMER: Unknown * PROGRAMER: Unknown
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/crt/?????? * FILE: lib/sdk/crt/string/atoi64.c
* PURPOSE: Unknown * PURPOSE: Unknown
* PROGRAMER: Unknown * PROGRAMER: Unknown
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/sdk/crt/itow.c * FILE: lib/sdk/crt/string/itow.c
* PURPOSE: converts a integer to wchar_t * PURPOSE: converts a integer to wchar_t
* PROGRAMER: * PROGRAMER:
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -2,7 +2,7 @@
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS CRT * PROJECT: ReactOS CRT
* PURPOSE: Implementation of mbstowcs_s * PURPOSE: Implementation of mbstowcs_s
* FILE: lib/sdk/crt/stdlib/mbstowcs_s.c * FILE: lib/sdk/crt/string/mbstowcs_s.c
* PROGRAMMER: Timo Kreuzer * PROGRAMMER: Timo Kreuzer
*/ */

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/crt/?????? * FILE: lib/sdk/crt/string/strcoll.c
* PURPOSE: Unknown * PURPOSE: Unknown
* PROGRAMER: Unknown * PROGRAMER: Unknown
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/crt/?????? * FILE: lib/sdk/crt/string/strrev.c
* PURPOSE: Unknown * PURPOSE: Unknown
* PROGRAMER: Unknown * PROGRAMER: Unknown
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/crt/strset.c * FILE: lib/sdk/crt/string/strset.c
* PURPOSE: Implementation of _strnset and _strset * PURPOSE: Implementation of _strnset and _strset
* PROGRAMER: Unknown * PROGRAMER: Unknown
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/crt/?????? * FILE: lib/sdk/crt/string/strstr.c
* PURPOSE: Unknown * PURPOSE: Unknown
* PROGRAMER: Unknown * PROGRAMER: Unknown
* UPDATE HISTORY: * UPDATE HISTORY:

View file

@ -1,7 +1,7 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
* FILE: lib/crt/?????? * FILE: lib/sdk/crt/string/strxfrm.c
* PURPOSE: Unknown * PURPOSE: Unknown
* PROGRAMER: Unknown * PROGRAMER: Unknown
* UPDATE HISTORY: * UPDATE HISTORY:

Some files were not shown because too many files have changed in this diff Show more