-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style: normalize codeing style with clang-format
clang-format **/*.{c,h}
- Loading branch information
1 parent
71f9e95
commit 20865f4
Showing
7 changed files
with
174 additions
and
120 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
#pragma once | ||
#include <stdint.h> | ||
#include <stddef.h> | ||
#include "ruby.h" | ||
#include <stddef.h> | ||
#include <stdint.h> | ||
|
||
typedef struct { | ||
uint32_t *data; | ||
size_t length; | ||
size_t size; | ||
} CodePoints; | ||
|
||
void codepoints_init(CodePoints*, VALUE str); | ||
void codepoints_free(CodePoints*); | ||
void codepoints_init(CodePoints *, VALUE str); | ||
void codepoints_free(CodePoints *); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.