Initial revision
[silc.git] / lib / silcsim / silcsimutil.c
1 /*
2
3   silcsimutil.c
4
5   Author: Pekka Riikonen <priikone@poseidon.pspt.fi>
6
7   Copyright (C) 2000 Pekka Riikonen
8
9   This program is free software; you can redistribute it and/or modify
10   it under the terms of the GNU General Public License as published by
11   the Free Software Foundation; either version 2 of the License, or
12   (at your option) any later version.
13   
14   This program is distributed in the hope that it will be useful,
15   but WITHOUT ANY WARRANTY; without even the implied warranty of
16   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17   GNU General Public License for more details.
18
19 */
20
21 #include "silcincludes.h"
22
23 #ifdef SILC_SIM                 /* SIM support enabled */
24
25 /* This puts two arguments together and returns a new allocated string.
26    This is used to produce the function names that are then get from
27    SIM's. */
28
29 char *silc_sim_symname(char *symbol, char *function)
30 {
31   char *ret;
32   int len1, len2, len3;
33
34   len1 = strlen(symbol);
35   len2 = strlen(function);
36   len3 = strlen(SILC_SIM_SYMBOL_PREFIX);
37   ret = silc_calloc(len1 + len2 + len3 + 2 + 1, sizeof(char));
38
39   strncpy(ret, SILC_SIM_SYMBOL_PREFIX, len3);
40   strncat(ret, "_", 1);
41   strncat(ret, symbol, len1);
42   strncat(ret, "_", 1);
43   strncat(ret, function, len2);
44
45   return ret;
46 }
47
48 #endif /* SILC_SIM */