Skip to content

Commit

Permalink
Merge pull request #8 from Rasie1/master
Browse files Browse the repository at this point in the history
Add cstring header + use modern C++ header
  • Loading branch information
FooBarWidget committed Oct 11, 2016
2 parents fe5c296 + fb298f4 commit 61e234f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions MultipartParser.h
Expand Up @@ -4,6 +4,7 @@
#include <sys/types.h> #include <sys/types.h>
#include <string> #include <string>
#include <stdexcept> #include <stdexcept>
#include <cstring>


class MultipartParser { class MultipartParser {
public: public:
Expand Down
5 changes: 3 additions & 2 deletions multipart.cpp
Expand Up @@ -3,9 +3,10 @@
#include <sys/stat.h> #include <sys/stat.h>
#include <sys/time.h> #include <sys/time.h>
#include <sys/types.h> #include <sys/types.h>
#include <stdio.h> #include <cstdio>
#include <unistd.h> #include <unistd.h>
#include <stdlib.h> #include <cstdlib>
#include <cstring>


//#define TEST_PARSER //#define TEST_PARSER
#define INPUT_FILE "input3.txt" #define INPUT_FILE "input3.txt"
Expand Down

0 comments on commit 61e234f

Please sign in to comment.