binary B+ tree - first attempt, compiles and runs
[svn/Cll1h/.git] / demos / column.c
1 #include "cll1.h"
2
3 program
4 {
5 char *ptr;
6 parse("/etc/passwd")
7 {
8 column(ptr,_,':',6);
9 if(ptr)puts(ptr);
10 }
11 done;
12 }
This page took 0.273659 seconds and 4 git commands to generate.