Skip to content

Instantly share code, notes, and snippets.

View sacko87's full-sized avatar

John T. Saxon sacko87

View GitHub Profile
@sacko87
sacko87 / aria.html
Created May 11, 2014 18:54
A quick example of ARIA.
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>WAI-ARIA Test</title>
</head>
<body>
<div role="application" tabindex="0">
<p id="i1" role="alert" aria-live="assertive">i am text.</p>
<ul role="navgation">
#include "utf16.h"
#include <errno.h>
uint8_t
isutf16(const unsigned char* string)
{
uint16_t W1, W2;
unsigned char *ptr = (unsigned char*) string;
while((W1 = *((uint16_t*) ptr)) != 0x0L) {
if(W1 < 0xd800 || W1 > 0xdfff) {
@sacko87
sacko87 / utf8.c
Last active August 29, 2015 13:57
#include "utf8.h"
#include <errno.h>
uint8_t
isutf8(const unsigned char *string)
{
int nbytes;
unsigned char *ptr = (unsigned char *) string;
while(*ptr) {
nbytes = 1;