Commit 4964af40 authored by Matthew Burket's avatar Matthew Burket
Browse files

Got something that does the basics

parent a18ad6e5
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -2,7 +2,9 @@
  <dictionary name="mburket">
    <words>
      <w>connetion</w>
      <w>descired</w>
      <w>initalize</w>
      <w>sucesss</w>
    </words>
  </dictionary>
</component>
 No newline at end of file
+180 −109

File changed.

Preview size limit exceeded, changes collapsed.

+36 −3

File changed.

Preview size limit exceeded, changes collapsed.

+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ typedef struct {
} GrowthBuffer;

void initBuffer(GrowthBuffer *arr, size_t initSize);
void appendBuffer(GrowthBuffer *arr, char *value, int length);
int appendBuffer(GrowthBuffer *arr, char *value, int length);
void freeBuffer(GrowthBuffer *arr);
int  hasSpaceBuffer(GrowthBuffer *arr, int length);

+63 −14

File changed.

Preview size limit exceeded, changes collapsed.

Loading