Fixed initialization of option tables
[libfirm] / ir / tv / strcalc.h
index fbb9287..2986acf 100644 (file)
@@ -1,17 +1,29 @@
 /*
- * Project:     libFIRM
- * File name:   ir/tv/strcalc.h
- * Purpose:     Provides basic mathematical operations on values represented as strings.
- * Author:      Mathias Heil
- * Modified by:
- * Created:
- * CVS-ID:      $Id$
- * Copyright:   (c) 2003 Universität Karlsruhe
- * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
+ * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
+ *
+ * This file is part of libFirm.
+ *
+ * This file may be distributed and/or modified under the terms of the
+ * GNU General Public License version 2 as published by the Free Software
+ * Foundation and appearing in the file LICENSE.GPL included in the
+ * packaging of this file.
+ *
+ * Licensees holding valid libFirm Professional Edition licenses may use
+ * this file in accordance with the libFirm Commercial License.
+ * Agreement provided with the Software.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
+ * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE.
  */
 
 /**
- * @file strcalc.h
+ * @file
+ * @brief    Provides basic mathematical operations on values represented as strings.
+ * @date     2003
+ * @author   Mathias Heil
+ * @version  $Id$
+ * @summary
  *
  * The module uses a string to represent values, and provides operations
  * to perform calculations with these values.
@@ -19,9 +31,8 @@
  * of them if you need to store the result.
  *
  */
-
-#ifndef _STRCALC_H_
-#define _STRCALC_H_
+#ifndef FIRM_TV_STRCALC_H
+#define FIRM_TV_STRCALC_H
 
 #include "irmode.h"
 
@@ -70,7 +81,7 @@ enum {
  */
 typedef enum {
   SC_ADD = 0,   /**< Addition */
-  SC_SUB,       /**< Substraction */
+  SC_SUB,       /**< Subtraction */
   SC_NEG,       /**< Unary Minus */
   SC_MUL,       /**< Multiplication */
   SC_DIV,       /**< Integer Division (with rounding toward zero ?) */
@@ -150,11 +161,12 @@ unsigned char sc_sub_bits(const void *value, int len, unsigned byte_ofs);
 /**
  * Converts a tarval into a string.
  *
- * @param val1      the value pointer
- * @param bits      number of valid bits in this value
- * @param base      output base
+ * @param val1        the value pointer
+ * @param bits        number of valid bits in this value
+ * @param base        output base
+ * @param signed_mode print it signed (only decimal mode supported
  */
-const char *sc_print(const void *val1, unsigned bits, enum base_t base);
+const char *sc_print(const void *val1, unsigned bits, enum base_t base, int signed_mode);
 
 /** Initialize the strcalc module.
  * Sets up internal data structures and constants
@@ -167,4 +179,4 @@ void init_strcalc(int precision_in_bytes);
 void finish_strcalc(void);
 int sc_get_precision(void);
 
-#endif /* _STRCALC_H_ */
+#endif /* FIRM_TV_STRCALC_H */