You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
426 B
20 lines
426 B
/*************
|
|
* Header file for postcoms.c
|
|
* 1999 E. Rouat
|
|
************/
|
|
|
|
#ifndef POSTCOMS_H_INCLUDED
|
|
#define POSTCOMS_H_INCLUDED
|
|
|
|
void com_unlet(wordlist *wl);
|
|
void com_load(wordlist *wl);
|
|
void com_print(wordlist *wl);
|
|
void com_write(wordlist *wl);
|
|
void com_write_sparam(wordlist *wl);
|
|
void com_transpose(wordlist *wl);
|
|
void com_cross(wordlist *wl);
|
|
void com_destroy(wordlist *wl);
|
|
void com_splot(wordlist *wl);
|
|
|
|
|
|
#endif
|