SalimMeghani
Primary tabs
My stories
Parser().
void parser(int *error, char *source, char *dest, int qol, int rw, int uniq) { int gloop=0; int dloop=0; int crloop=0, drloop=0; int alloop=0; int...
- Read more about Parser().
- Log in to post comments
- 249 reads
Misc. Functions (Part 2).
// Find a bracket. int isbracket(char c) { if (c=='('||c==')') return 1; else return 0; } // Find a decimal point. int isstop(char c) { if (c=='.')...
- Read more about Misc. Functions (Part 2).
- Log in to post comments
- 218 reads
expr_p()
// Convert a formula to its raw native numeric form (including brackets). double expr_p(int *error, char *form, int qol, int rw) { char *source=NULL...
- Read more about expr_p()
- Log in to post comments
- 228 reads
Misc. functions (1).
// Workout current column lettering dependant on integer column. void current_column(char *fch, char *sch, int column) { div_t x; if (column<=26...
- Read more about Misc. functions (1).
- Log in to post comments
- 209 reads
Dialog Box (2).
// // Message handler for Dialog Box. LRESULT CALLBACK Input(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) { switch (message) { case...
- Read more about Dialog Box (2).
- Log in to post comments
- 236 reads