SalimMeghani

Primary tabs

I have 53 stories published in 0 collections on the site.
My stories have been read 21110 times

SalimMeghani's picture
Salim Meghani

 

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...

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=='.')...

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...

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...

Dialog Box (2).

// // Message handler for Dialog Box. LRESULT CALLBACK Input(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) { switch (message) { case...

Pages