Skip to content

Commit

Permalink
Merge pull request #1154 from mgreter/bugfix/missing-fn-declarations
Browse files Browse the repository at this point in the history
Add missing C-API function declarations for `is_quoted`
  • Loading branch information
mgreter committed Apr 30, 2015
2 parents e716caa + 195e05a commit 040f8ce
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions sass_values.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ ADDAPI void ADDCALL sass_number_set_unit (union Sass_Value* v, char* unit);
// Getters and setters for Sass_String
ADDAPI const char* ADDCALL sass_string_get_value (const union Sass_Value* v);
ADDAPI void ADDCALL sass_string_set_value (union Sass_Value* v, char* value);
ADDAPI const bool ADDCALL sass_string_is_quoted(const union Sass_Value* v);
ADDAPI void ADDCALL sass_string_set_quoted(union Sass_Value* v, bool quoted);

// Getters and setters for Sass_Boolean
ADDAPI bool ADDCALL sass_boolean_get_value (const union Sass_Value* v);
Expand Down

0 comments on commit 040f8ce

Please sign in to comment.