![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | 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 and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to call the c library created by shc | alfredo | High Level Programming | 1 | 03-31-2008 12:26 PM |
| how to differentiate system call from library call | muru | UNIX for Advanced & Expert Users | 2 | 07-19-2007 11:20 PM |
| Help I've created a dir called / | pondlife | UNIX for Dummies Questions & Answers | 4 | 05-01-2007 01:34 PM |
| tcsh user failed to call library in ksh program | nir_s | Shell Programming and Scripting | 1 | 04-04-2006 08:29 AM |
| Two Files Created For Every One? | Atama | UNIX for Dummies Questions & Answers | 1 | 04-12-2002 04:44 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | 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. |
| Sponsored Links | ||
|
|