ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Convert-UUlib/uulib/fptools.h
(Generate patch)

Comparing Convert-UUlib/uulib/fptools.h (file contents):
Revision 1.8 by root, Tue Sep 15 17:03:36 2009 UTC vs.
Revision 1.9 by root, Sun Feb 9 15:06:43 2020 UTC

8/* 8/*
9 * Some handy, nonstandard functions. Note that the original may 9 * Some handy, nonstandard functions. Note that the original may
10 * be both faster and better. ``better'', if your compiler allows 10 * be both faster and better. ``better'', if your compiler allows
11 * cleaner use of such functions by proper use of ``const''. 11 * cleaner use of such functions by proper use of ``const''.
12 * 12 *
13 * $Id: fptools.h,v 1.8 2009/09/15 17:03:36 root Exp $ 13 * $Id: fptools.h,v 1.9 2020/02/09 15:06:43 root Exp $
14 */ 14 */
15 15
16#ifndef FPTOOLS_H__ 16#ifndef FPTOOLS_H__
17#define FPTOOLS_H__ 17#define FPTOOLS_H__
18 18
61 61
62void TOOLEXPORT _FP_free (void *); 62void TOOLEXPORT _FP_free (void *);
63char * TOOLEXPORT _FP_strdup (char *); 63char * TOOLEXPORT _FP_strdup (char *);
64char * TOOLEXPORT _FP_strncpy (char *, char *, int); 64char * TOOLEXPORT _FP_strncpy (char *, char *, int);
65void * TOOLEXPORT _FP_memdup (void *, int); 65void * TOOLEXPORT _FP_memdup (void *, int);
66int TOOLEXPORT _FP_stricmp (char *, char *); 66int TOOLEXPORT _FP_stricmp (const char *, const char *);
67int TOOLEXPORT _FP_strnicmp (char *, char *, int); 67int TOOLEXPORT _FP_strnicmp (const char *, const char *, int);
68char * TOOLEXPORT _FP_strrstr (char *, char *); 68char * TOOLEXPORT _FP_strrstr (char *, char *);
69char * TOOLEXPORT _FP_stoupper (char *); 69char * TOOLEXPORT _FP_stoupper (char *);
70char * TOOLEXPORT _FP_stolower (char *); 70char * TOOLEXPORT _FP_stolower (char *);
71int TOOLEXPORT _FP_strmatch (char *, char *); 71int TOOLEXPORT _FP_strmatch (char *, char *);
72char * TOOLEXPORT _FP_stristr (char *, char *); 72char * TOOLEXPORT _FP_stristr (char *, char *);
73char * TOOLEXPORT _FP_strirstr (char *, char *); 73char * TOOLEXPORT _FP_strirstr (char *, char *);
74char * TOOLEXPORT _FP_strrchr (char *, int); 74char * TOOLEXPORT _FP_strrchr (char *, int);
75char * TOOLEXPORT _FP_fgets (char *, int, FILE *); 75char * TOOLEXPORT _FP_fgets (char *, int, FILE *);
76char * TOOLEXPORT _FP_strpbrk (char *, char *); 76char * TOOLEXPORT _FP_strpbrk (char *, char *);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines