The function-prototypes tag has no wiki summary.
1
vote
2answers
56 views
Understanding a C prototype
A function prototype is
int alt_irq_register (alt_u32 id,
void* context,
void (*isr)(void*, alt_u32));
What does the last part mean? What is the *isr doing?
3
votes
1answer
55 views
Designing function prototypes for a singly-linked list API in C [closed]
I am in the process of rewriting in C all the data structures that I learned about a few years ago to increase my understanding of data structures and the C language. The first one I'm doing is ...
3
votes
2answers
65 views
Perl function protoypes
Why do we use function protoypes in Perl?
What are the different prototypes available? How to use them?
Example: $$,$@,\@@ what do they mean?
11
votes
2answers
311 views
Is there a new function type expression format in C++11?
Today I checked out Stroustrup's C++11 FAQ (modified April 7, 2013) and saw this at the end of the type-alias section:
typedef void (*PFD)(double); // C style
using PF = void (*)(double); // ...
0
votes
0answers
27 views
c++ project versions function prototype “diff”
With two different versions of a c++ project (many cpp and header files), does a tool exist to extract the function prototypes from each project and compare them for differences?
7
votes
2answers
132 views
How to find C functions without a prototype?
Company policy dictates that every function in C source code has a prototype. I inherited a project with its own make system (so I cannot test it on gcc or Visual Studio) and found that one of the ...
0
votes
3answers
50 views
String.prototype.myFunction not returning a string?
Why does the below code not return this properly? It should just return 'image', rather than all of the letters in an object, shouldn't it?
String.prototype.removeExtension = function(){
return ...
5
votes
1answer
62 views
What's the relationship between Number and Function.prototype in javascript?
I'm reading the book Javascript: the Good Parts. I'm a little confused when I read the code below:
Function.prototype.method = function (name, func) {
this.prototype[name] = func;
return ...
1
vote
1answer
85 views
How to extract function prototype from an ELF file?
I have been searching quite a lot, but haven't found a way to extract function prototype, atleast the argument types and return type from an ELF executable file. Using GNU BinUtils or any other ...
7
votes
3answers
217 views
Is it OK for function prototypes and function implementation signatures to use const inconsistently?
I like to declare even value parameters as const where possible, and by searching SO, I found that that's not too uncommon. Like this:
int add(const int a, const int b)
{
...
}
But I'm ...
6
votes
6answers
332 views
Function prototype in header file doesn't match definition, how to catch this?
(I found this question which is similar but not a duplicate:
How to check validity of header file in C programming language )
I have a function implementation, and a non-matching prototype (same ...
1
vote
3answers
96 views
function call and function prototype in c with a 2d array parameter
void setup_map (int *map); <--- prototype
int row, col; <-- global variables
some main
{
//get number of rows and cols from user
int map[rows][cols]; //create map here because another ...
0
votes
1answer
72 views
Invoke Function.prototype.apply inside a re-declaration of apply (Javascript)
While learning Javascript, I tried to re-declare the apply property of a function. Thus far no problem.
function foo() { return 1; }
alert(foo()); // 1
alert(foo.apply(null)); // 1
foo.apply = ...
4
votes
2answers
92 views
Javascript prototype function: decimal time value to a time string
On a project I'm currently working on in JavaScript, I'm using decimal formats so it's easier to calculate with rather than using an hour/minute format in strings (calendar related project). To ...
2
votes
1answer
72 views
idiomatic fallbacks in expression sfinae
Expression SFINAE is a very handy way to write several alternative functions to do the same thing, and pick the best one which compiles. You mention the critical expression(s) in the function ...
-1
votes
1answer
37 views
Instance of class and function return type confusion [duplicate]
I cannot do this:
class A
{
public:
A()
{
}
};
A a1();
Because A a1(); looks like a function prototype.
But I can do this:
class B
{
public:
B(std::string argument)
...
1
vote
2answers
137 views
Function prototype vs include header in cpp
I have function that do some work.
A.h
void doSomething(int n);
A.cpp
#include "A.h"
void doSomething(int n) {
/* something */
}
If I want to use this function in another source file, ...
4
votes
1answer
46 views
what is the logic of this keyword in js inside method in method?
Could anyone tell "this" keyword in js ..
I looked examples . There is a point that I can't understand.
A.B=function()
{
this.x(5); // this refers to prototype of A.B
}
...
3
votes
2answers
128 views
Advantages of function prototyping [closed]
After half an hour of research on the Internet, I couldn't find any reasoned discussion of the advantages of function prototyping.
I manage in Java/Android, and am beginning a C course. Prototyping ...
1
vote
2answers
74 views
Can I pass a NULL where int* is expected?
I have a function with the following prototype void init(int *argc,char**argv); but in a subsequent call of this function in my program I don't need or even have need to provide such arguments. So I ...
0
votes
1answer
78 views
C++ - More organized and efficient function prototyping [closed]
Is there a more organized way to use function prototyping or something similar and more efficient? I've had a few problems with function prototyping getting unorganized and filling most of my files ...
300
votes
11answers
26k views
Why does a function with no parameters (compared to the actual function definition) compile?
I've just come across someone's C code that I'm confused as to why it is compiling. There are two points I don't understand.
First, the function prototype has no parameters compared to the actual ...
1
vote
2answers
102 views
Best practices using Javascript prototypes
I know there is a lot of material available on using prototypes but there seem to be a lot of different suggested methods and I'm trying to find mine. I'm really just looking for feedback on the ...
2
votes
1answer
112 views
Enhance function prototype to call a given function before execution itself
I want to do an AOP-like 'before' functionality for javascript functions.
So I looked for existing solution and found the aop-plugin for jQuery. Unfortunately the plugin simply wraps the given ...
0
votes
2answers
162 views
Function prototype confusion
i have been learning C++ for a while and the only thing i cannot wrap my head around at all is the function prototype and function call and function definition stuff. Ive read all sorts of stuff and ...
0
votes
3answers
212 views
prototyping a function with a struct pointer as a parameter [closed]
I have been running in circles with this problem. I have a struct declared in extern.h:
typedef struct {
char data[Q_SIZE];
int head;
int tail;
int size;
}queue;
in main.c I declare ...
5
votes
2answers
113 views
The 'this' keyword returns the window object within an object's prototype in Javascript?
I have the following function in a class:
MyClass.prototype.myFunction = function(item, args)
{
console.log(this);
}
This function is called from an external library that I don't have ...
3
votes
3answers
217 views
Identifier not found?
After two years of C#, I tried C and i have some "noob" errors.
I tried to reverse an array with recursion, and i have this error:
error C3861: 'Rekurzija' indentifer not found
this is my code:
...
3
votes
1answer
109 views
Unexpected function prototype behavior in C
I was studying C from K & R and got confused in part 4.4 of the book, when it is referring to scope rules. Before I go any further, let me just post the source file I am working on.
#include ...
0
votes
3answers
65 views
Declaring method with extended classes
quick question on declaring functions. Lets say I have the following code:
class a{
int var;
/* stuff*/
}
class b : a{
/* other stuff*/
}
class c : a{
/* more other stuff*/
}
class ...
2
votes
2answers
93 views
Difference between methods of defining JavaScript 'classes'
What's the difference between these two method of defining a 'class' in JavaScript?
Method One
Define method within the constructor:
function MyClass()
{
this.foo = function() { ...
2
votes
4answers
103 views
Why does prototype need to be accessed via instance?
I'm trying to create a class constant, but I guess my novice-level understanding of JavaScript is showing. When this code executes:
var Class = function() {};
Class.prototype = { CONST : 1 };
var ...
1
vote
2answers
178 views
Crockford's code concerning the Constructor Invocation Pattern
The below code is almost identical to some code from Douglas Crockford's superb book JavaScript: The Good Parts, from pages 29-30. The only difference is that he adds the get_status property like so:
...
1
vote
1answer
127 views
How to register a function that is later called?
I run a console application and declared and instantiated an object of type Foo. Besides the Main() method I want to specify an additional method (lets call it ProcessMessages()) and have it perform ...
6
votes
1answer
182 views
function prototype declaration c
Today I saw a function prototype of the form(few initial lines are added for completeness)
typedef unsigned char md5_byte_t; /* 8-bit byte */
typedef unsigned int md5_word_t; /* 32-bit word */
/* ...
8
votes
3answers
261 views
Is it an undefined behavior to have different definitions of an inline function?
Minimal code:
// --------inline.h--------
struct X {
static inline void foo ();
};
#ifdef YES
inline void X::foo () { cout << "YES\n"; }
#else
inline void X::foo () { cout << ...
0
votes
4answers
697 views
How do you write a function prototype in c++ that returns a structure?
I have to create a bisection program for quadratic equations. Here are the instructions for two individual steps:
The program has to meet the following requirements:
Coefficients a,b, and c of the ...
2
votes
2answers
433 views
argument doesn't match prototype error in Linux
I have header file with the following function declaration:
extern getEmailDetailsResult * getemaildetails_5(getEmailDetailsInput *, CLIENT *);
In my .C file, the function definition is
...
0
votes
4answers
264 views
What is the effect of casting a function pointer void?
So I'm trying to write a buffering library for the 64th time and I'm starting get into some pretty advanced stuff. Thought I'd ask for some proffesional input on this.
In my first header file I have ...
7
votes
3answers
251 views
Do comments affect performance?
Am I correct to say that JavaScript code isn't compiled, not even JIT? If so, does that mean that comments have an affect on performance, and I should be very careful where I put place my comments? ...
-1
votes
2answers
1k views
Very New to C++ Programming - C++ Function does not take 0 arguments
In my C++ programming class I am tasked to create a payroll recorder for 5 employees. One of the requirement is no global variables, therefore I think this requires me to declare variables locally ...
1
vote
1answer
180 views
I need the prototype for calling RtlQueryProcessHeapInformation
I need to call RtlQueryProcessHeapInformation in Delphi.
RtlQueryProcessHeapInformation is a function exported from ntdll.dll.
I don't have a prototype for this function. I get "Undeclared ...
1
vote
2answers
507 views
Function prototyping in C
Today Clang, trying to compile a program, gave me kinda an strange message. I'm not really experienced with C, so I might be doing something wrong, but the code that I actually tried is this:
...
0
votes
5answers
288 views
Where should non-interface function prototypes be placed?
I've read repeatedly that header files should include all the declarations that other files will need to use the source code. Suppose then that you have a function that is not used directly by other ...
2
votes
2answers
324 views
How to receive unnamed structures as function parameters in C?
Yesterday while going through this question, I found a curious case of passing and receiving unnamed structures as function parameters.
For example, if I have a structure like this,
int main ()
{
...
6
votes
4answers
713 views
C++ : Meaning of const char*const*
In one of the C++ programs, I saw a function prototype : int Classifier::command(int argc, const char*const* argv)
What does const char*const* argv mean? Is it the same as const char* argv[]?
Does ...
0
votes
1answer
336 views
javascript prototype not working
Am I mistaking what .prototype is supposed to do, or is this just not working??
window.dump = function () {
for (var i = 0, x = dump.list.length; i < x; ++i) console.log.apply(this, ...
9
votes
4answers
173 views
What is the advantage of using this JavaScript coding pattern to define constructor functions?
I tend to write object constructors in the following way:
function Person(name) {
this.name = name;
}
Person.prototype.greet = function () {
alert("Hello! My name is " + this.name + ".");
};
...
0
votes
1answer
126 views
Strange attribute behaviour when using HTMLElement as prototype of custom Function
I'm trying to "extend" (not sure what is the correct term for this kind of extensions) a DOMElement to override certain properties (base element). To do so I dynamically create a function whose ...
2
votes
3answers
328 views
Passing a prototype's function as parameter without loosing the 'this' context in Javascript
I'm defining a 'class' in javascript by means of prototype.
The first time func() runs, it works, but when it's called the second time, through a setTimeout, it fails because this time it has lost ...





