Browse Source

Added missing copyright notices.

release/0.19
JustinAJ 10 years ago
parent
commit
f505cb34d1
  1. 8
      Jupiter/Base64.cpp
  2. 17
      Jupiter/Command.cpp
  3. 24
      Jupiter/Functions.h
  4. 8
      Jupiter/IRC.cpp
  5. 8
      Jupiter/IRC_Server.cpp
  6. 8
      Jupiter/IRC_Server.h
  7. 8
      Jupiter/Queue.cpp
  8. BIN
      Release/Jupiter.lib

8
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 <justin.aj@hotmail.com>
*/
#include "Base64.h" #include "Base64.h"
#include "Functions.h" #include "Functions.h"

17
Jupiter/Command.cpp

@ -1,17 +1,8 @@
/** /**
* Copyright (C) 2013-2014 Justin James. * Copyright (C) Justin James - All Rights Reserved.
* * Unauthorized use or copying of this file via any medium is strictly prohibited.
* This license must be preserved. * This document is proprietary and confidential.
* Any applications, libraries, or code which make any use of any * This document should be immediately destroyed unless given explicit permission by Justin James.
* 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.
* Written by Justin James <justin.aj@hotmail.com> * Written by Justin James <justin.aj@hotmail.com>
*/ */

24
Jupiter/Functions.h

@ -319,7 +319,7 @@ JUPITER_API uint64_t getPowerTwo64(uint64_t number);
* @param c Character to check. * @param c Character to check.
* @return True if the character is a hexadecimal digit, false otherwise. * @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) * @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. * @param c Character to check.
* @return True if the character is a hexadecimal digit, false otherwise. * @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) * @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. * @param c Character to check.
* @return True if the character is a decimal digit, false otherwise. * @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. * @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. * @param base Base of the representation.
* @return A character's represented integral value on success, -1 otherwise. * @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. * @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. * @param base Base of the string to interpret.
* @return Interpretation of the string as an integer on success, 0 otherwise. * @return Interpretation of the string as an integer on success, 0 otherwise.
*/ */
JUPITER_API int strtoi(const char *str, int base); JUPITER_API int Jupiter_strtoi(const char *str, int base);
JUPITER_API unsigned int strtoui(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. * @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. * @param base Base of the string to interpret.
* @return Interpretation of the string as an integer on success, 0 otherwise. * @return Interpretation of the string as an integer on success, 0 otherwise.
*/ */
JUPITER_API int strtoi_nospace(const char *str, int base); JUPITER_API int Jupiter_strtoi_nospace(const char *str, int base);
JUPITER_API unsigned int strtoui_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. * @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. * @param base Base of the string to interpret.
* @return Interpretation of the string as an integer on success, 0 otherwise. * @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 int Jupiter_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 unsigned int Jupiter_strtoui_s(const char *str, size_t length, int base);
/** /**
* @brief Interpets a string into a floating point decimal number. * @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. * @param base Base of the string to interpret.
* @return Interpretation of the string as an integer on success, 0 otherwise. * @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 int Jupiter_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 unsigned int Jupiter_strtoui_nospace_s(const char *str, size_t length, int base);
/** /**
* @brief Interpets a string into a floating point decimal number. * @brief Interpets a string into a floating point decimal number.

8
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 <justin.aj@hotmail.com>
*/
#include "IRC.h" #include "IRC.h"
const char Jupiter::IRC::CTCP = IRCCTCP[0]; /** IRC CTCP character */ const char Jupiter::IRC::CTCP = IRCCTCP[0]; /** IRC CTCP character */

8
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 <justin.aj@hotmail.com>
*/
#include "IRC_Server.h" #include "IRC_Server.h"
#include <string> #include <string>

8
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 <justin.aj@hotmail.com>
*/
#if !defined _IRC_SERVER_H_HEADER #if !defined _IRC_SERVER_H_HEADER
#define _IRC_SERVER_H_HEADER #define _IRC_SERVER_H_HEADER

8
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 <justin.aj@hotmail.com>
*/
#include "Queue.h" #include "Queue.h"
struct Jupiter::Queue::Data struct Jupiter::Queue::Data

BIN
Release/Jupiter.lib

Binary file not shown.
Loading…
Cancel
Save