~ubuntu-branches/ubuntu/wily/davix/wily

« back to all changes in this revision

Viewing changes to src/xml/davxmlparser.hpp

  • Committer: Package Import Robot
  • Author(s): Mattias Ellert
  • Date: 2014-10-23 16:02:47 UTC
  • mfrom: (5.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20141023160247-izv1acuq0bcfv3qn
Tags: 0.3.6-1
Update to version 0.3.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
    //
46
46
    // parse a block of character with a maximum size of 'len' characters
47
47
    // return negative value if failure or 0 if success
48
 
    int parseChuck(const char * partial_string, dav_size_t len);
 
48
    int parseChunk(const char * partial_string, dav_size_t len);
 
49
 
 
50
    inline int parseChunk(const std::string & partial_string){
 
51
        return parseChunk(partial_string.c_str(), partial_string.size());
 
52
    }
49
53
 
50
54
protected:
51
55