Replace gmx_large_int_t with gmx_int64_t
[alexxy/gromacs.git] / src / gromacs / legacyheaders / string2.h
index e4e51a179edc8968e7c97dbafee1bc2049b28456..5df39f79558e205990508b71e683a70db0906eb7 100644 (file)
@@ -208,7 +208,7 @@ char *wrap_lines(const char *buf, int line_width, int indent,
 char **split(char sep, const char *str);
 
 /*! \brief
- * Convert a string to gmx_large_int_t.
+ * Convert a string to gmx_int64_t.
  *
  * This method works as the standard library function strtol(), except that it
  * does not support different bases.
@@ -219,7 +219,7 @@ char **split(char sep, const char *str);
  *  - If an overflow occurs, returns zero and \p *endptr will equal \p str.
  *    errno is still set to ERANGE.
  */
-gmx_large_int_t str_to_large_int_t(const char *str, char **endptr);
+gmx_int64_t str_to_int64_t(const char *str, char **endptr);
 
 #ifdef GMX_NATIVE_WINDOWS
 #define snprintf _snprintf