Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
node-sass
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
楚学文
node-sass
Commits
33d4b1a2
Commit
33d4b1a2
authored
Apr 25, 2012
by
Lars Immisch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#define'd constants should not end with a semicolon.
Fix prototypes. C wants void (C++ doesn't need that).
parent
7b1e24ad
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
sass_interface.h
sass_interface.h
+7
-7
No files found.
sass_interface.h
View file @
33d4b1a2
...
...
@@ -2,10 +2,10 @@
extern
"C"
{
#endif
#define SASS_STYLE_NESTED 0
;
#define SASS_STYLE_EXPANDED 1
;
#define SASS_STYLE_COMPACT 2
;
#define SASS_STYLE_COMPRESSED 3
;
#define SASS_STYLE_NESTED 0
#define SASS_STYLE_EXPANDED 1
#define SASS_STYLE_COMPACT 2
#define SASS_STYLE_COMPRESSED 3
struct
sass_options
{
int
output_style
;
...
...
@@ -36,9 +36,9 @@ struct sass_folder_context {
char
*
error_message
;
};
struct
sass_context
*
sass_new_context
();
struct
sass_file_context
*
sass_new_file_context
();
struct
sass_folder_context
*
sass_new_folder_context
();
struct
sass_context
*
sass_new_context
(
void
);
struct
sass_file_context
*
sass_new_file_context
(
void
);
struct
sass_folder_context
*
sass_new_folder_context
(
void
);
void
sass_free_context
(
struct
sass_context
*
ctx
);
void
sass_free_file_context
(
struct
sass_file_context
*
ctx
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment