// CS307 Assignment 2 // Dummy Database functions // Dan J. Fraser, 1219229 // returns the stock price given a ticker symbol. // actually just the sum of the ascii values in this case.double dval(char *); char *dval(char *); // returns a description of the company, in theory. // but in this case, doesn't do much at all. char *dscript(char *, char *); // formats a friendly output string, depending on whether or not // the symbol was in caps. char *outval(char *, char *);