summaryrefslogtreecommitdiff
path: root/src/math-variables.h
diff options
context:
space:
mode:
authorPerberos <[email protected]>2011-11-24 23:33:08 -0300
committerPerberos <[email protected]>2011-11-24 23:33:08 -0300
commitaf876ebbd621a63a1a0636fb0ce74da5c2aca480 (patch)
treefffc4b798e4172059fbd25d78f5bce93b3284af2 /src/math-variables.h
parent5b8921d58fbb5ad226815829dece99d5cfc781b8 (diff)
downloadmate-calc-af876ebbd621a63a1a0636fb0ce74da5c2aca480.tar.bz2
mate-calc-af876ebbd621a63a1a0636fb0ce74da5c2aca480.tar.xz
allman style format
Diffstat (limited to 'src/math-variables.h')
-rw-r--r--src/math-variables.h20
1 files changed, 9 insertions, 11 deletions
diff --git a/src/math-variables.h b/src/math-variables.h
index b2317b0..dab20a0 100644
--- a/src/math-variables.h
+++ b/src/math-variables.h
@@ -28,25 +28,23 @@ G_BEGIN_DECLS
typedef struct MathVariablesPrivate MathVariablesPrivate;
-typedef struct
-{
- GObject parent_instance;
- MathVariablesPrivate *priv;
+typedef struct {
+ GObject parent_instance;
+ MathVariablesPrivate* priv;
} MathVariables;
-typedef struct
-{
- GObjectClass parent_class;
+typedef struct {
+ GObjectClass parent_class;
} MathVariablesClass;
GType math_variables_get_type(void);
-MathVariables *math_variables_new(void);
+MathVariables* math_variables_new(void);
-gchar **math_variables_get_names(MathVariables *variables);
+gchar** math_variables_get_names(MathVariables* variables);
-void math_variables_set_value(MathVariables *variables, const char *name, const MPNumber *value);
+void math_variables_set_value(MathVariables* variables, const char* name, const MPNumber* value);
-MPNumber *math_variables_get_value(MathVariables *variables, const char *name);
+MPNumber* math_variables_get_value(MathVariables* variables, const char* name);
#endif /* MATH_VARIABLES_H */