Skip to content

Commit

Permalink
count
Browse files Browse the repository at this point in the history
  • Loading branch information
wildwoong@gmail.com committed Jan 24, 2011
1 parent ca45f3e commit 212e417
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions String.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ class String {
int GetCapacity() const;

int Append(char ch);
int Append(char* pstr);
int Append(char* pstr, int count);
int Insert(int index, char ch);
int Insert(int index, char* pstr);
int Insert(int index, char* pstr, int count);
int Delete(int index, int count);

char* Mid(int first, int count);
Expand Down

0 comments on commit 212e417

Please sign in to comment.