Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
jaro_winkler / ext / jaro_winkler / codepoints.h
Size: Mime:
#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 *);