diff --git a/Jupiter/Base64.cpp b/Jupiter/Base64.cpp index b78c4c4..b6a8f67 100644 --- a/Jupiter/Base64.cpp +++ b/Jupiter/Base64.cpp @@ -1,3 +1,11 @@ +/** + * Copyright (C) Justin James - All Rights Reserved. + * Unauthorized use or copying of this file via any medium is strictly prohibited. + * This document is proprietary and confidential. + * This document should be immediately destroyed unless given explicit permission by Justin James. + * Written by Justin James + */ + #include "Base64.h" #include "Functions.h" diff --git a/Jupiter/Command.cpp b/Jupiter/Command.cpp index ceef5ef..e15ee1e 100644 --- a/Jupiter/Command.cpp +++ b/Jupiter/Command.cpp @@ -1,17 +1,8 @@ /** - * Copyright (C) 2013-2014 Justin James. - * - * This license must be preserved. - * Any applications, libraries, or code which make any use of any - * component of this program must not be commercial, unless explicit - * permission is granted from the original author. The use of this - * program for non-profit purposes is permitted. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - * - * In the event that this license restricts you from making desired use of this program, contact the original author. + * Copyright (C) Justin James - All Rights Reserved. + * Unauthorized use or copying of this file via any medium is strictly prohibited. + * This document is proprietary and confidential. + * This document should be immediately destroyed unless given explicit permission by Justin James. * Written by Justin James */ diff --git a/Jupiter/Functions.h b/Jupiter/Functions.h index 9a6a521..39548d2 100644 --- a/Jupiter/Functions.h +++ b/Jupiter/Functions.h @@ -319,7 +319,7 @@ JUPITER_API uint64_t getPowerTwo64(uint64_t number); * @param c Character to check. * @return True if the character is a hexadecimal digit, false otherwise. */ -JUPITER_API bool isBase(unsigned char c, int base); +JUPITER_API bool Jupiter_isBase(unsigned char c, int base); /** * @brief Checks if a character is a hexadecimal digit character. (base 16) @@ -327,7 +327,7 @@ JUPITER_API bool isBase(unsigned char c, int base); * @param c Character to check. * @return True if the character is a hexadecimal digit, false otherwise. */ -JUPITER_API bool isHex(unsigned char c); +JUPITER_API bool Jupiter_isHex(unsigned char c); /** * @brief Checks if a character is a decimal digit character. (base 10) @@ -335,7 +335,7 @@ JUPITER_API bool isHex(unsigned char c); * @param c Character to check. * @return True if the character is a decimal digit, false otherwise. */ -JUPITER_API bool isDecimal(unsigned char c); +JUPITER_API bool Jupiter_isDecimal(unsigned char c); /** * @brief Fetches a character's represented integral value. @@ -345,7 +345,7 @@ JUPITER_API bool isDecimal(unsigned char c); * @param base Base of the representation. * @return A character's represented integral value on success, -1 otherwise. */ -JUPITER_API int getBase(unsigned char c, int base); +JUPITER_API int Jupiter_getBase(unsigned char c, int base); /** * @brief Interprets a string into an integer. @@ -354,8 +354,8 @@ JUPITER_API int getBase(unsigned char c, int base); * @param base Base of the string to interpret. * @return Interpretation of the string as an integer on success, 0 otherwise. */ -JUPITER_API int strtoi(const char *str, int base); -JUPITER_API unsigned int strtoui(const char *str, int base); +JUPITER_API int Jupiter_strtoi(const char *str, int base); +JUPITER_API unsigned int Jupiter_strtoui(const char *str, int base); /** * @brief Interpets a string into a floating point decimal number. @@ -374,8 +374,8 @@ JUPITER_API double Jupiter_strtod(const char *str); * @param base Base of the string to interpret. * @return Interpretation of the string as an integer on success, 0 otherwise. */ -JUPITER_API int strtoi_nospace(const char *str, int base); -JUPITER_API unsigned int strtoui_nospace(const char *str, int base); +JUPITER_API int Jupiter_strtoi_nospace(const char *str, int base); +JUPITER_API unsigned int Jupiter_strtoui_nospace(const char *str, int base); /** * @brief Interpets a string into a floating point decimal number. @@ -395,8 +395,8 @@ JUPITER_API double Jupiter_strtod_nospace(const char *str); * @param base Base of the string to interpret. * @return Interpretation of the string as an integer on success, 0 otherwise. */ -JUPITER_API int strtoi_s(const char *str, size_t length, int base); -JUPITER_API unsigned int strtoui_s(const char *str, size_t length, int base); +JUPITER_API int Jupiter_strtoi_s(const char *str, size_t length, int base); +JUPITER_API unsigned int Jupiter_strtoui_s(const char *str, size_t length, int base); /** * @brief Interpets a string into a floating point decimal number. @@ -416,8 +416,8 @@ JUPITER_API double Jupiter_strtod_s(const char *str, size_t length); * @param base Base of the string to interpret. * @return Interpretation of the string as an integer on success, 0 otherwise. */ -JUPITER_API int strtoi_nospace_s(const char *str, size_t length, int base); -JUPITER_API unsigned int strtoui_nospace_s(const char *str, size_t length, int base); +JUPITER_API int Jupiter_strtoi_nospace_s(const char *str, size_t length, int base); +JUPITER_API unsigned int Jupiter_strtoui_nospace_s(const char *str, size_t length, int base); /** * @brief Interpets a string into a floating point decimal number. diff --git a/Jupiter/IRC.cpp b/Jupiter/IRC.cpp index 608538e..4831998 100644 --- a/Jupiter/IRC.cpp +++ b/Jupiter/IRC.cpp @@ -1,3 +1,11 @@ +/** + * Copyright (C) Justin James - All Rights Reserved. + * Unauthorized use or copying of this file via any medium is strictly prohibited. + * This document is proprietary and confidential. + * This document should be immediately destroyed unless given explicit permission by Justin James. + * Written by Justin James + */ + #include "IRC.h" const char Jupiter::IRC::CTCP = IRCCTCP[0]; /** IRC CTCP character */ diff --git a/Jupiter/IRC_Server.cpp b/Jupiter/IRC_Server.cpp index 2967983..ba4a2f0 100644 --- a/Jupiter/IRC_Server.cpp +++ b/Jupiter/IRC_Server.cpp @@ -1,3 +1,11 @@ +/** + * Copyright (C) Justin James - All Rights Reserved. + * Unauthorized use or copying of this file via any medium is strictly prohibited. + * This document is proprietary and confidential. + * This document should be immediately destroyed unless given explicit permission by Justin James. + * Written by Justin James + */ + #include "IRC_Server.h" #include diff --git a/Jupiter/IRC_Server.h b/Jupiter/IRC_Server.h index a1456d4..9e39b04 100644 --- a/Jupiter/IRC_Server.h +++ b/Jupiter/IRC_Server.h @@ -1,3 +1,11 @@ +/** + * Copyright (C) Justin James - All Rights Reserved. + * Unauthorized use or copying of this file via any medium is strictly prohibited. + * This document is proprietary and confidential. + * This document should be immediately destroyed unless given explicit permission by Justin James. + * Written by Justin James + */ + #if !defined _IRC_SERVER_H_HEADER #define _IRC_SERVER_H_HEADER diff --git a/Jupiter/Queue.cpp b/Jupiter/Queue.cpp index a7f314a..0f3b0e0 100644 --- a/Jupiter/Queue.cpp +++ b/Jupiter/Queue.cpp @@ -1,3 +1,11 @@ +/** + * Copyright (C) Justin James - All Rights Reserved. + * Unauthorized use or copying of this file via any medium is strictly prohibited. + * This document is proprietary and confidential. + * This document should be immediately destroyed unless given explicit permission by Justin James. + * Written by Justin James + */ + #include "Queue.h" struct Jupiter::Queue::Data diff --git a/Release/Jupiter.lib b/Release/Jupiter.lib index 8959ca6..3e38b40 100644 Binary files a/Release/Jupiter.lib and b/Release/Jupiter.lib differ