Repository URL to install this package:
Version:
1.5.4 ▾
|
#pragma once
#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 *);