OpenScop  0.9.0
util.h
Go to the documentation of this file.
1 
2  /*+-----------------------------------------------------------------**
3  ** OpenScop Library **
4  **-----------------------------------------------------------------**
5  ** util.h **
6  **-----------------------------------------------------------------**
7  ** First version: 08/10/2010 **
8  **-----------------------------------------------------------------**
9 
10 
11  *****************************************************************************
12  * OpenScop: Structures and formats for polyhedral tools to talk together *
13  *****************************************************************************
14  * ,___,,_,__,,__,,__,,__,,_,__,,_,__,,__,,___,_,__,,_,__, *
15  * / / / // // // // / / / // // / / // / /|,_, *
16  * / / / // // // // / / / // // / / // / / / /\ *
17  * |~~~|~|~~~|~~~|~~~|~~~|~|~~~|~|~~~|~~~|~~~|~|~~~|~|~~~|/_/ \ *
18  * | G |C| P | = | L | P |=| = |C| = | = | = |=| = |=| C |\ \ /\ *
19  * | R |l| o | = | e | l |=| = |a| = | = | = |=| = |=| L | \# \ /\ *
20  * | A |a| l | = | t | u |=| = |n| = | = | = |=| = |=| o | |\# \ \ *
21  * | P |n| l | = | s | t |=| = |d| = | = | = | | |=| o | | \# \ \ *
22  * | H | | y | | e | o | | = |l| | | = | | | | G | | \ \ \ *
23  * | I | | | | e | | | | | | | | | | | | | \ \ \ *
24  * | T | | | | | | | | | | | | | | | | | \ \ \ *
25  * | E | | | | | | | | | | | | | | | | | \ \ \ *
26  * | * |*| * | * | * | * |*| * |*| * | * | * |*| * |*| * | / \* \ \ *
27  * | O |p| e | n | S | c |o| p |-| L | i | b |r| a |r| y |/ \ \ / *
28  * '---'-'---'---'---'---'-'---'-'---'---'---'-'---'-'---' '--' *
29  * *
30  * Copyright (C) 2008 University Paris-Sud 11 and INRIA *
31  * *
32  * (3-clause BSD license) *
33  * Redistribution and use in source and binary forms, with or without *
34  * modification, are permitted provided that the following conditions *
35  * are met: *
36  * *
37  * 1. Redistributions of source code must retain the above copyright notice, *
38  * this list of conditions and the following disclaimer. *
39  * 2. Redistributions in binary form must reproduce the above copyright *
40  * notice, this list of conditions and the following disclaimer in the *
41  * documentation and/or other materials provided with the distribution. *
42  * 3. The name of the author may not be used to endorse or promote products *
43  * derived from this software without specific prior written permission. *
44  * *
45  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR *
46  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES *
47  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. *
48  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, *
49  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT *
50  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, *
51  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY *
52  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT *
53  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF *
54  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *
55  * *
56  * OpenScop Library, a library to manipulate OpenScop formats and data *
57  * structures. Written by: *
58  * Cedric Bastoul <Cedric.Bastoul@u-psud.fr> and *
59  * Louis-Noel Pouchet <Louis-Noel.pouchet@inria.fr> *
60  * *
61  *****************************************************************************/
62 
63 
64 #ifndef OSL_UTIL_H
65 # define OSL_UTIL_H
66 
67 # include <stdio.h>
68 
69 
70 # if defined(__cplusplus)
71 extern "C"
72  {
73 # endif
74 
75 
76 /*+***************************************************************************
77  * Utility functions *
78  *****************************************************************************/
79 char * osl_util_skip_blank_and_comments(FILE *, char *);
81 int osl_util_read_int(FILE *, char **);
82 char * osl_util_read_string(FILE *, char **);
83 char * osl_util_read_line(FILE *, char **);
84 char * osl_util_read_tag(FILE *, char **);
85 char * osl_util_read_tail(FILE *);
86 char * osl_util_read_uptoflag(FILE *, char **, char *);
87 char * osl_util_read_uptotag(FILE *, char **, char *);
88 char * osl_util_read_uptoendtag(FILE *, char **, char *);
89 char * osl_util_tag_content(char *, char *);
90 void osl_util_safe_strcat(char **, char *, int *);
91 char * osl_util_strdup(char const *);
93 void osl_util_print_provided(FILE *, int, char *);
94 char * osl_util_identifier_substitution(char *, char **);
95 
96 
97 # if defined(__cplusplus)
98  }
99 # endif
100 
101 #endif /* define OSL_UTIL_H */
void osl_util_print_provided(FILE *, int, char *)
Definition: util.c:557
char * osl_util_identifier_substitution(char *, char **)
Definition: util.c:682
char * osl_util_read_tail(FILE *)
void osl_util_sskip_blank_and_comments(char **)
Definition: util.c:113
char * osl_util_tag_content(char *, char *)
Definition: util.c:430
char * osl_util_read_uptotag(FILE *, char **, char *)
Definition: util.c:392
char * osl_util_strdup(char const *)
String duplicate.
Definition: util.c:504
char * osl_util_read_line(FILE *, char **)
Definition: util.c:226
void osl_util_safe_strcat(char **, char *, int *)
Definition: util.c:483
char * osl_util_read_tag(FILE *, char **)
Definition: util.c:268
char * osl_util_read_string(FILE *, char **)
Definition: util.c:181
int osl_util_get_precision()
Definition: util.c:518
char * osl_util_read_uptoendtag(FILE *, char **, char *)
Definition: util.c:413
char * osl_util_read_uptoflag(FILE *, char **, char *)
Definition: util.c:334
int osl_util_read_int(FILE *, char **)
Definition: util.c:140
char * osl_util_skip_blank_and_comments(FILE *, char *)
Definition: util.c:91