public
Description: An implementation of markdown in C, using a PEG grammar
Clone URL: git://github.com/jgm/peg-markdown.git
Search Repo:
Code cleanup: int to size_t.
jgm (author)
Mon May 19 15:47:15 -0700 2008
commit  3a688f9d47f6adafe4959356147b0e551e0c2103
tree    7af85fc29ad43529b1b0fdb64ef29ca43dfd16a4
parent  f764c7a308fbd2b83a8e0c25d6385a77752b4b31
...
86
87
88
89
90
 
 
91
92
93
...
86
87
88
 
 
89
90
91
92
93
0
@@ -86,8 +86,8 @@
0
     FILE *inputs[argc]; /* array of file pointers for inputs */
0
     int lastinp; /* index of last file in inputs */
0
     int i;
0
- int buflength = 0;
0
- int maxlength = INCREMENT;
0
+ size_t buflength = 0;
0
+ size_t maxlength = INCREMENT;
0
 
0
     char *inputbuf;
0
 

Comments

    No one has commented yet.