Added public files
Roughly added all public files. Probably missed some, though.
diff --git a/doc/LPC/do-while b/doc/LPC/do-while
new file mode 100644
index 0000000..8f69b2a
--- /dev/null
+++ b/doc/LPC/do-while
@@ -0,0 +1,15 @@
+NAME
+ do-while
+
+SYNTAX
+ do { statement } while(expr);
+
+DESCRIPTION
+ Execute 'statment' until 'expr' evaulates to 0.
+
+ A 'break' in the 'statement' will terminate the loop. A
+ 'continue' will continue the execution from the beginning of
+ the loop.
+
+SEE ALSO
+ for(LPC), foreach(LPC), while(LPC), if(LPC), switch(LPC)