#include <stdio.h>

int main ()
...

C Test

by https://www.google.com/accounts/o8/id?id=AItOawkZuzVMryYKOU8sDRj12k_5P2R4U4Yf5Rw, January 10, 2012 00:58, 1 refactoring

It is just for Test.

55502f40dc8b7c769880b10874abc9d0 Talk
double currentTime()
{
	struct timeval time;
...

C Current time in seconds fro...

by Ancide, October 26, 2011 02:48, 1 refactoring, tagged with benchmark time cpu

I have this function which ...

2c9328e639b9a7fbade5a0e94481d0b6 Talk
- (void)moveSprite:(CCSprite *)sprite from:(CGPoint)src to:(CGPoint)dst atSpeed:(float)speed
{
	AStarNode *node = [self findPathFrom:src to:dst];
...

C moveSprite stepSprite

by https://www.google.com/accounts/o8/id?id=AItOawmuTPHBNBgS93l6stBzzsrihN8sV0QDYg0, August 08, 2011 22:14, 1 refactoring

i just added stepSprite bas...

55502f40dc8b7c769880b10874abc9d0 Talk
/**
 * Parallel port morse code transmitter
 * Version: 1.00
...

C LPT Morse code transmitter

by ellisgl.myopenid.com, August 08, 2011 22:01, 4 refactorings, tagged with Linux, HAM, AM, Radio, Morse Code

Uses the LPT (Parallel Port...

8bba46dba9043c254e6eef1aa664e6f0 Talk
// Copyright (C) 2010 Simon Holywell
...

C Code review for a MySQL UDF...

by Treffynnon, June 01, 2011 07:58, 1 refactoring, tagged with mysql, memory, C, udf, ssdeep

I have written a small MySQ...

715a4bd349679b00b4659a3c136d1f3e Talk
#include <stdio.h>

#define WRAP 10
...

C K&R 1-22: Fold long inp...

by Richard Holland, March 09, 2011 21:20, 1 refactoring, tagged with c, K&R

This code is related to K&R...

45e65d6770ffb3749879dc0d83f17437 Talk
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
...

C Parsing a CSV string

by https://www.google.com/accounts/o8/id?id=AItOawlL5BjCAH6V7hkWWq6PVD0RZUUYtaPS7n8, February 16, 2011 11:51, 3 refactorings, tagged with C strings linux c

This is a C code, to essent...

55502f40dc8b7c769880b10874abc9d0 Talk
#ifndef DEQUE_H
...

C Deque

by fasked, February 13, 2011 12:27, 1 refactoring, tagged with deque

Deque in pure C. Please, ch...

7598abfb436a37a9a3b07f19ffec5485 Talk
/* Define the maximum password length */
#define MIN_PASSWORD_LENGTH 8
...

C Password gen in C with MD5 ...

by deepspring, January 14, 2011 20:38, 8 refactorings, tagged with c, password, generator, md5

I wanted to try my hand at ...

56438d61fd1c1b7d352a12c9b402f4a9 Talk
#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>
...

C md5-file.c

by https://www.google.com/accounts/o8/id?id=AItOawkaJfxdlVdOFdPHlhS4nKHGKNOFcokUd7I, December 26, 2010 01:27, 2 refactorings, tagged with c, md5, prettier

I've been messing around wi...

55502f40dc8b7c769880b10874abc9d0 Talk
char *escape(char *str, size_t len)
{
	char *newstr;
...

C Escaping special chars

by Douglas, October 08, 2010 17:01, 6 refactorings

I made a escaping function ...

D480bf91050295d59f4f0dc768f721c1 Talk
#include <unistd.h>
#include <sys/types.h>
#include <pwd.h>
...

C chroot without root

by bcsd.myopenid.com, September 23, 2010 14:49, 2 refactorings, tagged with c, system, posix

I want to run a process in ...

6757caf55de0413ae0994293e001d465 Talk
void splitpath(const char *path, char *directory, char *filename, char *extension)
{
...

C Extracting directory, filen...

by Navaneeth, July 03, 2010 17:13, 15 refactorings, tagged with c string replace

I am new to C. Following co...

D41d8cd98f00b204e9800998ecf8427e Talk
#include <stdio.h>

main()
...

C Bizzbuzz

by thaostra.myopenid.com, June 24, 2010 22:58, 4 refactorings, tagged with c, concise, bizzbuzz

My knowledge of C is limite...

55502f40dc8b7c769880b10874abc9d0 Talk
#include <windows.h>
#include <tchar.h>
#include <stdio.h>
...

C Traverse Directory

by emeka.micro.myopenid.com, April 12, 2010 12:54, 2 refactorings

I would like to improve my ...

55502f40dc8b7c769880b10874abc9d0 Talk
int contains(const char* word, const char* pattern) {
    int pCount = 0, pLength = strlen(pattern);
    char i;
...

C String Searching Algorithm

by Andreas Grech, March 28, 2010 01:43, 12 refactorings, tagged with c, string search

I wrote the following funct...

C398dd0c2ca7d5281d0a83242a924e76 Talk
/*
 * =====================================================================================
 *
...

C Using semaphores in C and f...

by jarodluebbert.myopenid.com, March 24, 2010 07:28, No refactoring, tagged with c, concurrency, ipc, semaphores

Just posting this to check ...

3a5f66f6c3feb6092d375c3e145de0d4 Talk
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
...

C Simple SHA Hashing

by mdw7.blogspot.com, December 11, 2009 15:38, 1 refactoring, tagged with c, hash, SHA1, 5 bit

Dear All, I'm a new C progr...

55502f40dc8b7c769880b10874abc9d0 Talk
void freeArray(int **a, int m) {
    int i;
    for (i = 0; i < m; ++i) {
...

C Freeing memory of a Multidi...

by Andreas Grech, November 28, 2009 17:18, 2 refactorings, tagged with c, array, malloc, free

Is this the correct way to ...

C398dd0c2ca7d5281d0a83242a924e76 Talk
// 
// cssmin.c
// 
...

C Css minification

by Tj Holowaychuk, November 25, 2009 22:05, 5 refactorings, tagged with css, minification

Repo is here http://github....

F1e3ab214a976a39cfd713bc93deb10f Talk
/*
 * 0x378 - 0x37F are data pins
 * 0x383 - 0x387 are status pins
...

C LPT garland

by taro, November 18, 2009 14:53, 6 refactorings, tagged with freebsd, lpt, garland

This is my first C program....

E9d3f1a9ded6d6b118dd84467f2278df Talk
public void foo(string bar)
{

...

C test

by Cb, November 11, 2009 19:07, 3 refactorings

test

4224dd00640071e10be53b1933566132 Talk
/* a[1..k] - previous values
** c[1..k+1] - coefficients
**
...

C linear recurrence computation

by getopenid.com/eliben, November 02, 2009 04:41, 3 refactorings, tagged with c array

For Jon Bentley's "Programm...

Fc761ccaf6c0d7d977e2959f9bfebd06 Talk
#include <stdio.h>
#include <stdlib.h>
...

C Enumerator

by Tj Holowaychuk, October 29, 2009 16:53, 3 refactorings

yup

F1e3ab214a976a39cfd713bc93deb10f Talk
// 
// array.h - CKit
...

C C Array Implementation

by Tj Holowaychuk, October 19, 2009 00:24, 6 refactorings, tagged with c array

im no c pro. may be some me...

F1e3ab214a976a39cfd713bc93deb10f Talk