diff --git a/inc/assert.h b/inc/assert.h index 3683e68..9bb3247 100644 --- a/inc/assert.h +++ b/inc/assert.h @@ -1,3 +1,9 @@ +/* Copyright (C) Thornwave Labs Inc - All Rights Reserved + * Unauthorized copying of this file, via any medium is strictly prohibited + * Proprietary and confidential + * Written by Razvan Turiac + */ + #ifndef _RTLIBC_ASSERT_H #define _RTLIBC_ASSERT_H diff --git a/inc/ctype.h b/inc/ctype.h index d4a3916..8af6c04 100644 --- a/inc/ctype.h +++ b/inc/ctype.h @@ -1,3 +1,9 @@ +/* Copyright (C) Thornwave Labs Inc - All Rights Reserved + * Unauthorized copying of this file, via any medium is strictly prohibited + * Proprietary and confidential + * Written by Razvan Turiac + */ + #ifndef _RTLIBC_CTYPE_H #define _RTLIBC_CTYPE_H diff --git a/inc/inttypes.h b/inc/inttypes.h index c808c2e..963791d 100644 --- a/inc/inttypes.h +++ b/inc/inttypes.h @@ -1 +1,7 @@ +/* Copyright (C) Thornwave Labs Inc - All Rights Reserved + * Unauthorized copying of this file, via any medium is strictly prohibited + * Proprietary and confidential + * Written by Razvan Turiac + */ + #include \ No newline at end of file diff --git a/inc/malloc.h b/inc/malloc.h index c85a629..b535c18 100644 --- a/inc/malloc.h +++ b/inc/malloc.h @@ -1,3 +1,9 @@ +/* Copyright (C) Thornwave Labs Inc - All Rights Reserved + * Unauthorized copying of this file, via any medium is strictly prohibited + * Proprietary and confidential + * Written by Razvan Turiac + */ + #ifndef _RTLIBC_MALLOC_H #define _RTLIBC_MALLOC_H diff --git a/inc/math.h b/inc/math.h index 3313ead..d0ed241 100644 --- a/inc/math.h +++ b/inc/math.h @@ -1,3 +1,9 @@ +/* Copyright (C) Thornwave Labs Inc - All Rights Reserved + * Unauthorized copying of this file, via any medium is strictly prohibited + * Proprietary and confidential + * Written by Razvan Turiac + */ + #ifndef _RTLIBC_MATH_H #define _RTLIBC_MATH_H diff --git a/inc/printf.h b/inc/printf.h index 1fc1602..4eeec5b 100644 --- a/inc/printf.h +++ b/inc/printf.h @@ -1,3 +1,9 @@ +/* Copyright (C) Thornwave Labs Inc - All Rights Reserved + * Unauthorized copying of this file, via any medium is strictly prohibited + * Proprietary and confidential + * Written by Razvan Turiac + */ + #ifndef _RTLIBC_PRINTF_H #define _RTLIBC_PRINTF_H diff --git a/inc/stdio.h b/inc/stdio.h index dd7dda0..0d6af1a 100644 --- a/inc/stdio.h +++ b/inc/stdio.h @@ -1,3 +1,9 @@ +/* Copyright (C) Thornwave Labs Inc - All Rights Reserved + * Unauthorized copying of this file, via any medium is strictly prohibited + * Proprietary and confidential + * Written by Razvan Turiac + */ + #ifndef _RTLIBC_STDIO_H #define _RTLIBC_STDIO_H diff --git a/inc/stdlib.h b/inc/stdlib.h index 807e321..90cdb70 100644 --- a/inc/stdlib.h +++ b/inc/stdlib.h @@ -1,3 +1,9 @@ +/* Copyright (C) Thornwave Labs Inc - All Rights Reserved + * Unauthorized copying of this file, via any medium is strictly prohibited + * Proprietary and confidential + * Written by Razvan Turiac + */ + #ifndef _RTLIBC_STDLIB_H #define _RTLIBC_STDLIB_H diff --git a/inc/string.h b/inc/string.h index c89b1c3..a10b5b5 100644 --- a/inc/string.h +++ b/inc/string.h @@ -1,3 +1,9 @@ +/* Copyright (C) Thornwave Labs Inc - All Rights Reserved + * Unauthorized copying of this file, via any medium is strictly prohibited + * Proprietary and confidential + * Written by Razvan Turiac + */ + #ifndef _RTLIBC_STRING_H #define _RTLIBC_STRING_H diff --git a/inc/time.h b/inc/time.h index df2442a..f2d9590 100644 --- a/inc/time.h +++ b/inc/time.h @@ -1,3 +1,9 @@ +/* Copyright (C) Thornwave Labs Inc - All Rights Reserved + * Unauthorized copying of this file, via any medium is strictly prohibited + * Proprietary and confidential + * Written by Razvan Turiac + */ + #ifndef _RTLIBC_TIME_H #define _RTLIBC_TIME_H diff --git a/inc/types.h b/inc/types.h index 1fecd45..d44bae7 100644 --- a/inc/types.h +++ b/inc/types.h @@ -1,3 +1,9 @@ +/* Copyright (C) Thornwave Labs Inc - All Rights Reserved + * Unauthorized copying of this file, via any medium is strictly prohibited + * Proprietary and confidential + * Written by Razvan Turiac + */ + #ifndef _RTLIBC_TYPES_H #define _RTLIBC_TYPES_H diff --git a/src/iprintf.c b/src/iprintf.c index 21cffc1..32a9cf3 100644 --- a/src/iprintf.c +++ b/src/iprintf.c @@ -1,3 +1,9 @@ +/* Copyright (C) Thornwave Labs Inc - All Rights Reserved + * Unauthorized copying of this file, via any medium is strictly prohibited + * Proprietary and confidential + * Written by Razvan Turiac + */ + #include #include #include diff --git a/src/malloc.c b/src/malloc.c index 118014e..df95f4a 100644 --- a/src/malloc.c +++ b/src/malloc.c @@ -1,3 +1,9 @@ +/* Copyright (C) Thornwave Labs Inc - All Rights Reserved + * Unauthorized copying of this file, via any medium is strictly prohibited + * Proprietary and confidential + * Written by Razvan Turiac + */ + #include diff --git a/src/math.c b/src/math.c index d87564f..999551b 100644 --- a/src/math.c +++ b/src/math.c @@ -1,3 +1,9 @@ +/* Copyright (C) Thornwave Labs Inc - All Rights Reserved + * Unauthorized copying of this file, via any medium is strictly prohibited + * Proprietary and confidential + * Written by Razvan Turiac + */ + #include #include diff --git a/src/printf.c b/src/printf.c index 1e58446..ff86363 100644 --- a/src/printf.c +++ b/src/printf.c @@ -1,3 +1,9 @@ +/* Copyright (C) Thornwave Labs Inc - All Rights Reserved + * Unauthorized copying of this file, via any medium is strictly prohibited + * Proprietary and confidential + * Written by Razvan Turiac + */ + #include #include #include diff --git a/src/stdio.c b/src/stdio.c index f3c84f1..7df03eb 100644 --- a/src/stdio.c +++ b/src/stdio.c @@ -1,3 +1,9 @@ +/* Copyright (C) Thornwave Labs Inc - All Rights Reserved + * Unauthorized copying of this file, via any medium is strictly prohibited + * Proprietary and confidential + * Written by Razvan Turiac + */ + #include #include #include diff --git a/src/stdio_internal.h b/src/stdio_internal.h index 4eb3d25..d0f28e8 100644 --- a/src/stdio_internal.h +++ b/src/stdio_internal.h @@ -1,3 +1,9 @@ +/* Copyright (C) Thornwave Labs Inc - All Rights Reserved + * Unauthorized copying of this file, via any medium is strictly prohibited + * Proprietary and confidential + * Written by Razvan Turiac + */ + #ifndef _STDIO_INTERNAL_H #define _STDIO_INTERNAL_H diff --git a/src/stdlib.c b/src/stdlib.c index 32a8626..e770c8e 100644 --- a/src/stdlib.c +++ b/src/stdlib.c @@ -1,3 +1,9 @@ +/* Copyright (C) Thornwave Labs Inc - All Rights Reserved + * Unauthorized copying of this file, via any medium is strictly prohibited + * Proprietary and confidential + * Written by Razvan Turiac + */ + #include #include #include diff --git a/src/string.c b/src/string.c index d9396db..aa72c99 100644 --- a/src/string.c +++ b/src/string.c @@ -1,3 +1,9 @@ +/* Copyright (C) Thornwave Labs Inc - All Rights Reserved + * Unauthorized copying of this file, via any medium is strictly prohibited + * Proprietary and confidential + * Written by Razvan Turiac + */ + #include #include