Ruby  2.5.0dev(2017-10-22revision60238)
util.h
Go to the documentation of this file.
1 /**********************************************************************
2 
3  util.h -
4 
5  $Author$
6  created at: Thu Mar 9 11:55:53 JST 1995
7 
8  Copyright (C) 1993-2007 Yukihiro Matsumoto
9 
10 **********************************************************************/
11 
12 #ifndef RUBY_UTIL_H
13 #define RUBY_UTIL_H 1
14 
15 #if defined(__cplusplus)
16 extern "C" {
17 #if 0
18 } /* satisfy cc-mode */
19 #endif
20 #endif
21 
22 #include "ruby/defines.h"
23 #ifdef RUBY_EXTCONF_H
24 #include RUBY_EXTCONF_H
25 #endif
26 
27 #ifndef _
28 #ifdef __cplusplus
29 # ifndef HAVE_PROTOTYPES
30 # define HAVE_PROTOTYPES 1
31 # endif
32 # ifndef HAVE_STDARG_PROTOTYPES
33 # define HAVE_STDARG_PROTOTYPES 1
34 # endif
35 #endif
36 #ifdef HAVE_PROTOTYPES
37 # define _(args) args
38 #else
39 # define _(args) ()
40 #endif
41 #ifdef HAVE_STDARG_PROTOTYPES
42 # define __(args) args
43 #else
44 # define __(args) ()
45 #endif
46 #endif
47 
49 
50 #define DECIMAL_SIZE_OF_BITS(n) (((n) * 3010 + 9998) / 9999)
51 /* an approximation of ceil(n * log10(2)), up to 65536 at least */
52 
53 #define scan_oct(s,l,e) ((int)ruby_scan_oct((s),(l),(e)))
54 unsigned long ruby_scan_oct(const char *, size_t, size_t *);
55 #define scan_hex(s,l,e) ((int)ruby_scan_hex((s),(l),(e)))
56 unsigned long ruby_scan_hex(const char *, size_t, size_t *);
57 
58 #ifdef HAVE_GNU_QSORT_R
59 # define ruby_qsort qsort_r
60 #else
61 void ruby_qsort(void *, const size_t, const size_t,
62  int (*)(const void *, const void *, void *), void *);
63 #endif
64 
65 void ruby_setenv(const char *, const char *);
66 void ruby_unsetenv(const char *);
67 
68 char *ruby_strdup(const char *);
69 #undef strdup
70 #define strdup(s) ruby_strdup(s)
71 
72 char *ruby_getcwd(void);
73 #define my_getcwd() ruby_getcwd()
74 
75 double ruby_strtod(const char *, char **);
76 #undef strtod
77 #define strtod(s,e) ruby_strtod((s),(e))
78 
79 void ruby_each_words(const char *, void (*)(const char*, int, void*), void *);
80 
82 
83 #if defined(__cplusplus)
84 #if 0
85 { /* satisfy cc-mode */
86 #endif
87 } /* extern "C" { */
88 #endif
89 
90 #endif /* RUBY_UTIL_H */
void ruby_each_words(const char *, void(*)(const char *, int, void *), void *)
Definition: util.c:3822
double ruby_strtod(const char *, char **)
Definition: util.c:1994
void ruby_setenv(const char *, const char *)
Definition: hash.c:3497
char * ruby_strdup(const char *)
Definition: util.c:496
#define RUBY_SYMBOL_EXPORT_END
Definition: missing.h:49
void ruby_unsetenv(const char *)
Definition: hash.c:3641
void ruby_qsort(void *, const size_t, const size_t, int(*)(const void *, const void *, void *), void *)
#define RUBY_SYMBOL_EXPORT_BEGIN
Definition: missing.h:48
char * ruby_getcwd(void)
Definition: util.c:508
unsigned long ruby_scan_hex(const char *, size_t, size_t *)
Definition: util.c:48
unsigned long ruby_scan_oct(const char *, size_t, size_t *)
Definition: util.c:34