mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 19:08:09 +01:00
11 lines
137 B
C
11 lines
137 B
C
|
#define _GNU_SOURCE
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
char *found;
|
||
|
char *string;
|
||
|
|
||
|
found = canonicalize_file_name (string);
|
||
|
}
|