Skip to content

Commit

Permalink
Add strings.h to each file using strcasecmp, and change <c*> format i…
Browse files Browse the repository at this point in the history
…nto <*.h>
  • Loading branch information
puckipedia committed Oct 25, 2014
1 parent ada6388 commit 2cca743
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 8 deletions.
5 changes: 3 additions & 2 deletions Languages/Sources/HtmlCssJsPhp_Language.cpp
Expand Up @@ -33,8 +33,9 @@
Created: 12/07/97 22:01:11 by Maarten Hekkelman
*/

#include <cctype>
#include <cstring>
#include <ctype.h>
#include <string.h>
#include <strings.h>
#include <stack>
#include "CLanguageAddOn.h"
#include "HColorUtils.h"
Expand Down
1 change: 1 addition & 0 deletions Languages/Sources/HtmlCssJsPhp_Popup.cpp
Expand Up @@ -39,6 +39,7 @@
*/
#include <map>
#include <string>
#include <strings.h>
#include <vector>
#include "CLanguageAddOn.h"

Expand Down
2 changes: 2 additions & 0 deletions Languages/Sources/HtmlJs_Language.cpp
Expand Up @@ -36,6 +36,8 @@
#include "CLanguageAddOn.h"
#include "HColorUtils.h"

#include <strings.h>

_EXPORT const char kLanguageName[] = "HTML-JS";
_EXPORT const char kLanguageExtensions[] = "html;htm";
_EXPORT const char kLanguageCommentStart[] = "<!";
Expand Down
1 change: 1 addition & 0 deletions Languages/Sources/HtmlJs_Popup.cpp
Expand Up @@ -35,6 +35,7 @@

#include "CLanguageAddOn.h"
#include <string>
#include <strings.h>

const long kMaxNameSize = 256;

Expand Down
1 change: 1 addition & 0 deletions Languages/Sources/Html_Popup.cpp
Expand Up @@ -35,6 +35,7 @@

#include "CLanguageAddOn.h"
#include <string>
#include <strings.h>

const long kMaxNameSize = 256;

Expand Down
1 change: 1 addition & 0 deletions Languages/Sources/Lua_Popup.cpp
@@ -1,5 +1,6 @@
#include <SupportDefs.h>
#include <string.h>
#include <strings.h>
#include <ctype.h>
#include "CLanguageAddOn.h"

Expand Down
1 change: 1 addition & 0 deletions Languages/Sources/Pascal_Popup.cpp
Expand Up @@ -36,6 +36,7 @@
*/

#include "CLanguageAddOn.h"
#include <strings.h>

const int kMaxNameSize = 256;

Expand Down
13 changes: 7 additions & 6 deletions Sources/pe.h
Expand Up @@ -88,13 +88,14 @@
#include <UTF8.h>


#include <cstdlib>
#include <cstring>
#include <cstdio>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include <stdio.h>

#include <cstdarg>
#include <ctime>
#include <cerrno>
#include <stdarg.h>
#include <time.h>
#include <errno.h>

#include <vector>
#include <set>
Expand Down
1 change: 1 addition & 0 deletions rez/Sources/SymbolTable.cpp
Expand Up @@ -35,6 +35,7 @@

#include "SymbolTable.h"
#include <string.h>
#include <strings.h>

struct Node {
Node *left, *right;
Expand Down

0 comments on commit 2cca743

Please sign in to comment.