![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Rules & FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to call the c library created by shc | alfredo | High Level Programming | 1 | 03-31-2008 09:26 AM |
| how to differentiate system call from library call | muru | UNIX for Advanced & Expert Users | 2 | 07-19-2007 08:20 PM |
| Help I've created a dir called / | pondlife | UNIX for Dummies Questions & Answers | 4 | 05-01-2007 10:34 AM |
| tcsh user failed to call library in ksh program | nir_s | Shell Programming and Scripting | 1 | 04-04-2006 05:29 AM |
| Two Files Created For Every One? | Atama | UNIX for Dummies Questions & Answers | 1 | 04-12-2002 01:44 PM |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
How to call the c library created by shc
I have written a shell script called square, which prints the square of the input number, eg.
> square 4 16 There is a program called shc which compiles the shell scirpt and create a executable file and a c library file, namely square.x and square.x.c repectively. If I would like to include square.x.c in another c script, such that the c script can use this square function. Then, how can I call the function in the c script? Should I use square 4 or square(4) ? PS: Perhaps, square can be done by common c function, but actually this is an example, I just want to know how to call the shc-compiled function in c script. |
|||
| Google UNIX.COM |
| Forum Sponsor | ||
|
|