]> git.donarmstrong.com Git - biopieces.git/blob - code_c/Maasha/src/test_split.c
refactoring of assemble_pairs
[biopieces.git] / code_c / Maasha / src / test_split.c
1 #include <stdio.h>
2 #include "common.h"
3 #include "list.h"
4
5
6 int main()
7 {
8     char string[] = "FOO\tBAR\tFOOBAR\n";
9
10     struct list *fields;
11
12     chomp( string );
13
14     split( string, '\t', &fields ); 
15
16     list_print( fields );
17
18     return 0;
19 }