blob: 5ca65d570de9d54699f1db586e7dbe161ea8296b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*******************************************************************/
/* slibtool: a skinny libtool implementation, written in C */
/* Copyright (C) 2016 Z. Gilboa */
/* Released under the Standard MIT License; see COPYING.SLIBTOOL. */
/*******************************************************************/
#include <stdbool.h>
#include <slibtool/slibtool.h>
int slbt_create_symlink(
const struct slbt_driver_ctx * dctx,
struct slbt_exec_ctx * ectx,
const char * target,
char * lnkname,
bool flawrapper);
|