#include <string.h>
#include "Musimat.h"
Go to the source code of this file.
Functions | |
| Integer | Length (String s) |
| String length. | |
| Integer | RealToRational (Real f, Integer Reference a, Integer Reference b) |
| Convert Real value to rational value. | |
| Void | About () |
Definition in file Musimat.cpp.
| Void About | ( | ) |
Definition at line 70 of file Musimat.cpp.
References Print().
00071 { 00072 Print("The Musimat Tutorial (©) 2006 Gareth Loy"); 00073 Print("Derived from Chapter 9 and Appendix B of \"Musimathics Vol. 1\" © 2006 Gareth Loy"); 00074 Print("and published exclusively by The MIT Press."); 00075 Print("This program is released WITHOUT ANY WARRANTY; without even the implied"); 00076 Print("warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."); 00077 Print("For information on usage and redistribution, and for a DISCLAIMER OF ALL"); 00078 Print("WARRANTIES, see the file, LICENSE.txt, in this distribution."); 00079 Print("\"Musimathics\" is available here: http://mitpress.mit.edu/catalog/item/default.asp?ttype=2&tid=10916"); 00080 Print("Gareth Loy's Musimathics website: http://www.musimathics.com/"); 00081 Print("The Musimat website: http://www.musimat.com/"); 00082 Print("This program is released under the terms of the GNU General Public License"); 00083 Print("available here: http://www.gnu.org/licenses/gpl.txt"); 00084 }
1.4.7