Added public files
Roughly added all public files. Probably missed some, though.
diff --git a/doc/LPC/while b/doc/LPC/while
new file mode 100644
index 0000000..adc4708
--- /dev/null
+++ b/doc/LPC/while
@@ -0,0 +1,15 @@
+NAME
+ while
+
+SYNTAX
+ while (expr) statement;
+
+DESCRIPTION
+ While 'expr' evaluates to non 0, execute statement.
+
+ 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), do-while(LPC), if(LPC), switch(LPC)