summary refs log tree commit diff stats
path: root/c/two-fer/src/two_fer.c
blob: 259c750a0515856f9bb99239a59d3d2b02756ef1 (plain) (blame)
1
2
3
4
5
6
7
#include "two_fer.h"
#include <stdio.h>
#include <string.h>

void two_fer(char *buffer, const char *name) {
    sprintf(buffer, "One for %s, one for me.", name == NULL ? "you" : name);
}