Branch: Tag:

1996-05-01

1996-05-01 22:05:26 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>

linker_options implemented and doc files moved

Rev: doc/files/cd:1.2(DEAD)
Rev: doc/files/exece:1.2(DEAD)
Rev: doc/files/file:1.2(DEAD)
Rev: doc/files/file_stat:1.2(DEAD)
Rev: doc/files/fork:1.2(DEAD)
Rev: doc/files/get_dir:1.2(DEAD)
Rev: doc/files/getcwd:1.2(DEAD)
Rev: doc/files/mkdir:1.2(DEAD)
Rev: doc/files/mv:1.2(DEAD)
Rev: doc/files/perror:1.2(DEAD)
Rev: doc/files/port:1.2(DEAD)
Rev: doc/files/rm:1.2(DEAD)
Rev: doc/math/acos:1.2(DEAD)
Rev: doc/math/asin:1.2(DEAD)
Rev: doc/math/atan:1.2(DEAD)
Rev: doc/math/ceil:1.2(DEAD)
Rev: doc/math/cos:1.2(DEAD)
Rev: doc/math/exp:1.2(DEAD)
Rev: doc/math/floor:1.2(DEAD)
Rev: doc/math/log:1.2(DEAD)
Rev: doc/math/pow:1.2(DEAD)
Rev: doc/math/sin:1.2(DEAD)
Rev: doc/math/sqrt:1.2(DEAD)
Rev: doc/math/tan:1.2(DEAD)
Rev: doc/regexp/regexp:1.2(DEAD)
Rev: doc/sprintf/sprintf:1.2(DEAD)
Rev: src/modules/files/Makefile.src:1.2
Rev: src/modules/files/doc/cd:1.1
Rev: src/modules/files/doc/exece:1.1
Rev: src/modules/files/doc/file:1.1
Rev: src/modules/files/doc/file_stat:1.1
Rev: src/modules/files/doc/fork:1.1
Rev: src/modules/files/doc/get_dir:1.1
Rev: src/modules/files/doc/getcwd:1.1
Rev: src/modules/files/doc/mkdir:1.1
Rev: src/modules/files/doc/mv:1.1
Rev: src/modules/files/doc/perror:1.1
Rev: src/modules/files/doc/port:1.1
Rev: src/modules/files/doc/rm:1.1
Rev: src/modules/math/Makefile.src:1.2
Rev: src/modules/math/configure.in:1.2
Rev: src/modules/math/doc/acos:1.1
Rev: src/modules/math/doc/asin:1.1
Rev: src/modules/math/doc/atan:1.1
Rev: src/modules/math/doc/ceil:1.1
Rev: src/modules/math/doc/cos:1.1
Rev: src/modules/math/doc/exp:1.1
Rev: src/modules/math/doc/floor:1.1
Rev: src/modules/math/doc/log:1.1
Rev: src/modules/math/doc/pow:1.1
Rev: src/modules/math/doc/sin:1.1
Rev: src/modules/math/doc/sqrt:1.1
Rev: src/modules/math/doc/tan:1.1
Rev: src/modules/regexp/doc/regexp:1.1
Rev: src/modules/sprintf/doc/sprintf:1.1

234:   </docgroup>   </namespace>   <namespace name='predef'> + <docgroup homogen-name='&amp;&amp;' homogen-type='method'> + <method name='&amp;&amp;'/><doc placeholder='true'> + <text> + <p><tt>&amp;&amp;</tt> - logical and</p> +  + <tt><p>a &amp;&amp; b<br/> + </p> + </tt> + <p>This operator does logical 'and' between expressions. It first + evaluates a and returns zero if a is zero. Otherwise it returns + b. Note that b is not evaluated at all if a returns zero.</p> +  + operators</text> +  + <group><seealso/><text> + <p><ref resolved='predef::`&amp;' to='`&amp;'>`&amp;</ref> and <ref resolved='predef::&amp;&amp;' to='||'>||</ref></p> + </text></group> +  + </doc> + </docgroup>   <docgroup homogen-name='PI' homogen-type='constant'>   <constant name='PI'/><doc placeholder='true'>   <text>
344:   operators</text>      <group><seealso/><text> - <p><ref resolved='predef::`|' to='`|'>`|</ref> and <ref resolved='predef::`^' to='`^'>`^</ref></p> + <p><ref resolved='predef::`|' to='`|'>`|</ref>, <ref resolved='predef::`^' to='`^'>`^</ref> and <ref resolved='predef::`&amp;' to='&amp;&amp;'>&amp;&amp;</ref></p>   </text></group>      </doc>
704:   operators</text>      <group><seealso/><text> - <p><ref resolved='predef::`&amp;' to='`&amp;'>`&amp;</ref> and <ref resolved='predef::`^' to='`^'>`^</ref></p> + <p><ref resolved='predef::`&amp;' to='`&amp;'>`&amp;</ref>, <ref resolved='predef::`^' to='`^'>`^</ref> and <ref resolved='predef::`|' to='||'>||</ref></p>   </text></group>      </doc>
862:      </doc>   </docgroup> + <docgroup homogen-name='alarm' homogen-type='method'> + <method name='alarm'/><doc placeholder='true'> + <text> + <p><tt>alarm</tt> - set an alarm clock for delivery of a signal</p> +  + <tt><p>int alarm(int <i>seconds</i>);<br/> + </p> + </tt> + <p>alarm arranges for a SIGALRM signal to be delivered to the + process in seconds seconds. + </p> + <p>If seconds is zero, no new alarm is scheduled. + </p> + <p>In any event any previously set alarm is cancelled.</p> + </text> +  + <group><returns/><text> + <p>alarm returns the number of seconds remaining until any + previously scheduled alarm was due to be delivered, or + zero if there was no previously scheduled alarm.</p> + </text></group> +  + <group><seealso/><text> + <p><ref resolved='predef::signal' to='signal'>signal</ref></p> + </text></group> +  + </doc> + </docgroup>   <docgroup homogen-name='all_efuns' homogen-type='method'>   <method name='all_efuns'/><doc placeholder='true'>   <text>
2947:   <r><c> a == b </c><c> returns 1 if a is the same mapping as b, same size, indices and values is not enough, 0 otherwise. </c></r>   <r><c> a != b </c><c> returns 0 if a is the same mapping as b, same size, indices and values is not enough, 1 otherwise. </c></r>   <r><c> ! a </c><c> boolean not, returns 0 </c></r> - <r><c> a[c] </c><c> indexing, returns the value associated with the value c in the mapping a. If there is no index c in the mapping zero will be returned. (With zero type = 1) </c></r> + <r><c> a[c] </c><c> indexing, returns the value associated with the value c in the mapping a. If there is no index c in the mapping zero will be returned. (With zero_type = 1) </c></r>   <r><c> a[c]=d </c><c> setting, this associates d with c in the mapping, the index c will be added to the mapping automatically if it isn't already there. </c></r>   </matrix>   </p>
2955:   types</text>      <group><seealso/><text> - <p><ref resolved='predef::array' to='array'>array</ref>, <ref resolved='predef::list' to='list'>list</ref>, <ref resolved='predef::sizeof' to='predef::sizeof'>builtin/sizeof</ref>, <ref resolved='predef::indices' to='predef::indices'>builtin/indices</ref> and <ref resolved='predef::values' to='predef::values'>builtin/values</ref></p> + <p><ref resolved='predef::array' to='array'>array</ref>, <ref resolved='predef::list' to='list'>list</ref>, <ref resolved='predef::sizeof' to='predef::sizeof'>builtin/sizeof</ref>, <ref resolved='predef::indices' to='predef::indices'>builtin/indices</ref>, <ref resolved='predef::values' to='predef::values'>builtin/values</ref> and <ref resolved='predef::zero_type' to='predef::zero_type'>builtin/zero_type</ref></p>   </text></group>      </doc>
3553:   <p>string replace(string s, string from, string to);   </p>   <p><dl><group><text>When given strings as second and third argument, a copy of<br/> - s with every occurance of 'from' return 'to'.<br/> + s with every occurance of 'from' return 'to' is returned.<br/>   </text></group></dl>   </p>   <p>string replace(string s, string *from, string *to);
4743:   will return 1 if there was no such thing present in the mappping, or   no such call_out could be found. Otherwize zero_type will return zero.</p>    - int</text> + int and mapping</text>      <group><seealso/><text>   <p><ref resolved='predef::find_call_out' to='find_call_out'>find_call_out</ref></p>
4751:      </doc>   </docgroup> + <docgroup homogen-name='||' homogen-type='method'> + <method name='||'/><doc placeholder='true'> + <text> + <p><tt>||</tt> - logical or</p> +  + <tt><p>a || b<br/> + </p> + </tt> + <p>This operator does logical 'or' between expressions. It first + evaluates a and returns that if a is non-zero. Otherwise it + returns b. Note that b is not evaluated at all if a is non-zero.</p> +  + operators</text> +  + <group><seealso/><text> + <p><ref resolved='predef::`|' to='`|'>`|</ref> and <ref resolved='predef::||' to='&amp;&amp;'>&amp;&amp;</ref></p> + </text></group> +  + </doc> + </docgroup>   <class name='/precompiled/file'>   <doc placeholder='true'>   <text>