Skip to content

Instantly share code, notes, and snippets.

View mrnonz's full-sized avatar
🎯
Focusing

Nontawat Numor mrnonz

🎯
Focusing
View GitHub Profile

Keybase proof

I hereby claim:

  • I am mrnonz on github.
  • I am mrnonz (https://keybase.io/mrnonz) on keybase.
  • I have a public key whose fingerprint is 70FB 5C74 AC56 37E0 6A36 62B3 61CC 5591 CF45 D6F9

To claim this, I am signing this object:

@mrnonz
mrnonz / simpleLexer.flex
Created February 2, 2017 14:08
Use for Compiler #2
D [0-9]
L [a-zA-Z_]
H [a-fA-F0-9]
E [Ee][+-]?{D}+
FS (f|F|l|L)
IS (u|U|l|L)*
%option noyywrap
%{
@mrnonz
mrnonz / simpleLexer.flex
Created February 2, 2017 14:08
Use for Compiler #2
D [0-9]
L [a-zA-Z_]
H [a-fA-F0-9]
E [Ee][+-]?{D}+
FS (f|F|l|L)
IS (u|U|l|L)*
%option noyywrap
%{
//
// main.c
// Radix_sort
//
// Created by Nontawat Numor on 8/19/2558 BE.
// Copyright (c) 2558 Nontawat Numor. All rights reserved.
//
#include <stdio.h>
void swap(int* a, int* b) {