Skip to content

Instantly share code, notes, and snippets.

View kaecy's full-sized avatar
🌄
I'm awake.

Eris kaecy

🌄
I'm awake.
  • Freelancer
  • England
View GitHub Profile
@whoo24
whoo24 / client.cpp
Created June 24, 2013 07:15
Basic Winsock Program
#include "stdafx.h"
#include <WinSock2.h>
#include <ws2tcpip.h>
#pragma comment(lib, "Ws2_32.lib")
void run_client()
{
WSADATA wsaData;
WSAStartup( MAKEWORD(2,2), &wsaData );
@b-adams
b-adams / doxblox.c
Created March 19, 2012 07:05
Documentation and sample output for Linked List program.
//This documentation should be put with the appropriate class/method/function declarations.
//Remember to add file documentation blocks to all your files!
/**
Entry point for the program. Tests that list operations are working.
*/
/**
Represents a node in a singly linked list
*/