Skip to content

Commit

Permalink
Update tokenizer.c
Browse files Browse the repository at this point in the history
Signed-off-by: Josef Edwards <joed6834@colorado.edu>
  • Loading branch information
bearycool11 authored Nov 12, 2024
1 parent e8d6066 commit f99c5fd
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions tokenizer.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "tokenizer.h"

#define MAX_TOKEN_SIZE 100

Expand All @@ -13,23 +12,6 @@ void tokenize(char *input) {
}
}

#ifndef TOKENIZER_H
#define TOKENIZER_H

void tokenize(char *input);

#endif // TOKENIZER_H
```

#### main.c
```c
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "tokenizer.h"

#define MAX_TOKEN_SIZE 100

int main() {
char input[MAX_TOKEN_SIZE];

Expand Down

0 comments on commit f99c5fd

Please sign in to comment.