C++, format of function call


 
Thread Tools Search this Thread
Top Forums Programming C++, format of function call
# 1  
Old 02-03-2014
Moderator's Comments:
Mod Comment Thread opener failed to select the right forum, failed to coherently present his problem, failed to use CODE tags and - on a personal note - failed to convince me this is not homework. I fail to keep the thread open therefore.

-closed and moved-


bakunin
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to Call a Function

Hi I have created a function in a Shell Script test.sh function fnTest() { echo "My first Method } I have called this function in my test.sh cat abc.txt | grep "test" echo " test" fnTest But while running the shell script i got the following error: ... (2 Replies)
Discussion started by: nanthagopal
2 Replies

2. Shell Programming and Scripting

After exit from function it should not call other function

Below is my script that is function properly per my conditions but I am facing one problem here that is when one function fails then Iy should not check other functions but it calls the other function too So anyone can help me how could i achieve this? iNOUT i AM GIVING TO THE... (1 Reply)
Discussion started by: rohit22hamirpur
1 Replies

3. Shell Programming and Scripting

Function call

Hi foiks i am unable to find what is wrong in my code mu functionality is to exit from shell when i give 99 but it is not calling function ext Could you please correct me. read option if ; then ext else echo "out" fi function ext { echo "tested 99 and exit... (12 Replies)
Discussion started by: kojo
12 Replies

4. Infrastructure Monitoring

diffrence between method call and function call in perl

Hello, I have a problem with package and name space. require "/Mehran/DSGateEngineLib/general.pl"; use strict; sub System_Status_Main_Service_Status_Intrusion_Prevention { my %idpstatus; my @result; &General_ReadHash("/var/dsg/idp/settings",\%idpstatus); #print... (4 Replies)
Discussion started by: Zaxon
4 Replies

5. Shell Programming and Scripting

Function Call

Hi, I have a string corresponding to a function. How I can call that function without if statement? Thanks in advance. (4 Replies)
Discussion started by: Zaxon
4 Replies

6. Shell Programming and Scripting

Function Call

How we can start a process if doesn't exists before? (1 Reply)
Discussion started by: Zaxon
1 Replies

7. Shell Programming and Scripting

help on function call

hello, when i call function inside awk traitement it doesn't work, i don't have error execution but i don't get result and if i call the function outside awk traitement it work well.. there's something special in awk call function?? here is the example : awk -F "," '{ {first=$1; sec=$2;... (3 Replies)
Discussion started by: kamel.seg
3 Replies

8. Shell Programming and Scripting

call function

I have a function check_ok in my abc.sh. which return me 1 or 0 . I want to call this fuction through other shell script. this shell also send two parameter to calling function. Can you please tell me how. I am very new in unix. #!/bin/bash date_equal() { sqlplus -silent... (4 Replies)
Discussion started by: Jamil Qadir
4 Replies

9. Shell Programming and Scripting

function call

can I call a function in bash script just as in C++ while do function() done function() thanks, Steffen (3 Replies)
Discussion started by: forever_49ers
3 Replies

10. Shell Programming and Scripting

change the empty function from the old format to the new format

I have about 300 files which has the function getDBBackend(). How to write a program to change the empty function from the old format to the new format? Old empty function format are either: function getDBBackend() { // Not available } // getDBBackend or: function... (0 Replies)
Discussion started by: powah
0 Replies
Login or Register to Ask a Question
ADDRDSRECWINDOW(3)					      RDS PHYSICAL FUNCTIONS						ADDRDSRECWINDOW(3)

NAME
addrdsrecwindow - adds a rectangle in the windowing of rds structure. ORIGIN
This software belongs to the ALLIANCE CAD SYSTEM developed by the ASIM team at LIP6 laboratory of Universite Pierre et Marie CURIE, in Paris, France. Web : http://asim.lip6.fr/recherche/alliance/ E-mail : alliance-users@asim.lip6.fr SYNOPSYS
#include "rwinnn.h" void addrdsrecwindow( Rectangle, RdsWindow ) rdsrec_list *Rectangle; rdswindow *RdsWindow; PARAMETER
Rectangle The rectangle to add to the windowing. RdsWindow The head of the windowing which has to contain the rectangle. DESCRIPTION
The addrdsrecwindow function inserts a rdsrec_list rectangle structure in the windowing of the rds structure. The rectangle is added in one or many windows of the table (it depends on his dimensions). The field 'USER' of the rectangle is used to point to the list of windows which contains the rectangle. So, the field 'USER' has to be saved in an added structure to the rdsrec_list structure if librfm functions are used because somes use the field 'USER' to link rectangles (see librds about field 'USER'). Note If the rectangle is contained in only one window, then the field 'USER' points to a "rdswin_list" window structure. If the rectangle is contained in many windows, the field 'USER' points to a "rdsrecwin_list" structure which is a list which con- tains windows. To know if a rectangle belongs to one or many windows, use the macro IsRdsOneWindow defined in librwi. RETURN VALUE
none ERRORS
"Rds202: rdsalloc error, can't continue !" it's impossible to allocate the memory size desired EXAMPLE
#include "mutnnn.h" #include "rdsnnn.h" #include "rwinnn.h" #include "rtlnnn.h" # define POINTER_LINKREC(R) (((UserStruct *)((char *)(R)+sizeof(rdsrec_list)))->LINKREC ) typedef struct UserStruct { void *LINKREC; } UserStruct; main() { rdsfig_list *Figure; rdsrec_list *Rectangle; rdswindow *RdsWindow; rdswin_list *ScanWin; rdsrecwin_list *ScanRecWin; mbkenv(); rdsenv(); loadrdsparam(); Figure = addrdsfig( "core",sizeof ( UserStruct ) ); Rectangle = addrdsfigrec(Figure,"Alu1",RDS_ALU1,2,4,5,1); /* Using the field 'USER' */ Rectangle->USER = Rectangle; . . . . RdsWindow = allocrdswindow(); RdsWindow->XMIN = -200; RdsWindow->YMIN = -200; RdsWindow->XMAX = 200; RdsWindow->YMAX = 200; RdsWindow->DX = 4; RdsWindow->DY = 4; RdsWindow->SIDE = 100; RdsWindow->SIZE = RdsWindow->DX * RdsWindow->DY ; RdsWindow->WINTAB = allocrdswin( RdsWindow->SIZE ); /* Save the field 'USER' of the rectangle */ POINTER_LINKREC(Rectangle) = Rectangle->USER; /* */ addrdsrecwindow( Rectangle, RdsWindow ); /* windows associated to a rectangle are pointed by the field 'USER' of the rectangle */ /* getting windows (pointer *ScanWin) of a rectangle */ if ( IsRdsOneWindow(Rectangle) ) { ScanWin = (rdswin_list *) Rectangle->USER; } else { ScanRecWin = Rectangle->USER; while ( ScanRecWin != NULL ) { ScanWin = (rdswin_list *) (ScanRecWin)->WINDOW; ScanRecWin = ScanRecWin->NEXT; } } . . . } SEE ALSO
librwi, delrdsrecwindow BUG REPORT
This tool is under development at the ASIM department of the LIP6 laboratory. We need your feedback to improve documentation and tools. ASIM
/LIP6 October 1, 1997 ADDRDSRECWINDOW(3)