aboutsummaryrefslogtreecommitdiffstats
path: root/getline-test.c
blob: 54d1fb34207e31ad0cdfbec145a10434650a10dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Your guess is as good as mine. Possibly something to do with GNU Getline though...
#include<stdio.h>
#include<stdlib.h>

int main (int argc, char *argv[]) {
    char **string;

    string = malloc(100)
    *string = "test";

    printf("%s", **string);
}