"Fossies" - the Fresh Open Source Software Archive

Member "teapot-2.3.0/misc.h" (6 Feb 2012, 456 Bytes) of package /linux/privat/old/teapot-2.3.0.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file. For more information about "misc.h" see the Fossies "Dox" file reference documentation.

    1 #ifndef MISC_H
    2 #define MISC_H
    3 
    4 #include <stdio.h>
    5 
    6 #include "sheet.h"
    7 
    8 #ifdef __cplusplus
    9 extern "C" {
   10 #endif
   11 
   12 void posorder(int *x, int *y);
   13 long int posnumber(const char *s, const char **endptr);
   14 char *mystrmalloc(const char *str);
   15 const char *dblfinite(double x);
   16 int fputc_close(char c, FILE *fp);
   17 int fputs_close(const char *s, FILE *fp);
   18 void adjust(Adjust a, char *s, size_t n);
   19 char *striphtml(const char *in);
   20 
   21 #ifdef __cplusplus
   22 }
   23 #endif
   24 
   25 #endif