]> andersk Git - splint.git/blame - src/Headers/misc.h
Added manual files
[splint.git] / src / Headers / misc.h
CommitLineData
885824d3 1/*
28bf4b0b 2** Copyright (C) University of Virginia, Massachusetts Institue of Technology 1994-2001.
885824d3 3** See ../LICENSE for license information.
4**
5*/
6/*
7** misc.h
8**
9** (general.c)
10*/
11
12# ifndef MISC_H
13# define MISC_H
14
15# ifndef NOLCL
16# include "lclMisc.h"
17# endif
18
19extern void assertSet (/*@special@*/ /*@sef@*/ /*@unused@*/ void *p_x)
20 /*@sets p_x, *p_x@*/ ;
21# define assertSet(x) ;
22
cd7d9b17 23extern void assertDefined (/*@sef@*/ /*@unused@*/ void *p_x) ;
24# define assertDefined(x) ;
25
26
885824d3 27/*@-czechfcns@*/
28extern int size_toInt (size_t p_x) /*@*/ ;
29extern long size_toLong (size_t p_x) /*@*/ ;
30extern size_t size_fromInt (int p_x) /*@*/ ;
31extern int longUnsigned_toInt (long unsigned int p_x) /*@*/ ;
32extern int long_toInt (long p_x) /*@*/ ;
33extern long unsigned longUnsigned_fromInt (int p_x) /*@*/ ;
a956d444 34extern unsigned int int_toNonNegative (int p_x) /*@*/ ;
885824d3 35/*@=czechfcns@*/
36
37/* string functions */
38
39typedef /*@concrete@*/ char *mstring;
40typedef /*@observer@*/ char *ob_mstring;
41typedef /*@observer@*/ /*@null@*/ char *bn_mstring;
42
43extern /*@unused@*/ /*@notnull@*/ /*@observer@*/ char *
44 mstring_safePrint (/*@returned@*/ /*@null@*/ mstring p_s) /*@*/ ;
45extern char *mstring_spaces (int p_n) /*@*/ ;
46extern char *mstring_concat (const char *p_s1, const char *p_s2) /*@*/ ;
47extern char *mstring_concatFree (/*@only@*/ char *p_s1, /*@only@*/ char *p_s2) /*@modifies *p_s1, *p_s2*/ ;
48extern char *mstring_concatFree1 (/*@only@*/ char *p_s1, const char *p_s2);
49extern char *mstring_append (/*@only@*/ char *p_s1, char p_c);
50extern char *mstring_copy (/*@null@*/ char *p_s1) /*@*/ ;
51extern bool mstring_equalPrefix (const char *p_c1, const char *p_c2) /*@*/ ;
52extern bool mstring_equal (/*@null@*/ const char *p_s1, /*@null@*/ const char *p_s2) /*@*/ ;
68de3f33 53extern bool mstring_containsChar (/*@unique@*/ const char *p_s, char p_c) /*@*/ ;
54extern bool mstring_containsString (/*@unique@*/ const char *p_s, /*@unique@*/ const char *p_c) /*@*/ ;
885824d3 55
56extern int mstring_length (/*@sef@*/ /*@null@*/ char *p_s) /*@*/ ;
57# define mstring_length(s) \
58 (((s) != NULL) ? size_toInt (strlen (s)) : 0)
59
60extern /*@falsenull@*/ bool mstring_isDefined (/*@sef@*/ /*@null@*/ char *p_s) /*@*/ ;
61# define mstring_isDefined(s) ((s) != NULL)
62
63extern /*@truenull@*/ bool mstring_isEmpty (/*@sef@*/ /*@null@*/ char *p_s) /*@*/ ;
64# define mstring_isEmpty(s) (mstring_length(s) == 0)
65
66extern void mstring_markFree (/*@owned@*/ char *p_s) /*@modifies *p_s;@*/ ;
67
3be9a165 68extern /*@notnull@*/ /*@only@*/ char *mstring_create (int p_n) /*@*/ /*@ensures maxSet(result) == p_n @*/ ;
885824d3 69extern /*@notnull@*/ /*@only@*/ char *mstring_createEmpty (void) /*@*/ ;
70
71extern void mstring_free (/*@out@*/ /*@only@*/ /*@null@*/ char *p_s);
72# define mstring_free(s) sfree(s)
73
74# define mstring_createEmpty() mstring_create(0)
75
76extern int int_compare (/*@sef@*/ int p_x, /*@sef@*/ int p_y) /*@*/ ;
77# define int_compare(x,y) (((x) > (y)) ? 1 : (((x) < (y)) ? -1 : 0))
78
79/*@-macroparams@*/
80/*@-macrofcndecl@*/ /* works for lots of types */
81# define generic_compare(x,y) (((x) > (y)) ? 1 : (((x) < (y)) ? -1 : 0))
82/*@=macrofcndecl@*/
83/*@=macroparams@*/
84
85/*@notfunction@*/
86# define GET(s) ((s *)smalloc(sizeof(s)))
87
28bf4b0b 88/*@-czechfcns@*/
885824d3 89extern bool isHeaderFile (cstring) /*@*/ ;
90
91extern void fputline (FILE *p_out, char *p_s) /*@modifies p_out@*/;
92
93extern int int_log (int p_x) /*@*/ ;
94
95extern char char_fromInt (int p_x) /*@*/ ;
96
28bf4b0b 97extern /*@exposed@*/ cstring removePreDirs (cstring p_s);
885824d3 98
99/* These are defined by the bison library (?) */
100extern /*@external@*/ int isatty (int);
101extern /*@external@*/ int yywrap (void);
28bf4b0b 102/*@=czechfcns@*/
885824d3 103
104# else
105# error "Multiple include"
106# endif
28bf4b0b 107
108
109
110
111
This page took 0.078541 seconds and 5 git commands to generate.