Search Results

11
votes
4answers
1k views

What is the best unicode library for C?

What is the best unicode library for C? Where "best" is defined by cross-platform support, compiler independence, and reasonable performance across a the most common languages in use. …
5
votes

How to implement continuations?

A good summary is available in Implementation Strategies for First-Class Continuations, an article by Clinger, Har …
10
votes

What is a jump table?

A jump table can be either an array of pointers to functions or an array of machine code jump instructions. If you have a relatively static set of functions (such as system calls or virtual functi …