In C and C++, the typedef keyword allows you to create an alias for a known data type.
1
vote
1answer
76 views
typedef in C difference?
What is the difference between the following in C language:
typedef enum month_t
{
jan,
feb,
march
}month;
AND
typedef enum
{
monday,
tuesday,
wednesday
}day;
Before posting this question I read ...
0
votes
2answers
58 views
Differences in 2 similar typedef definition
You can define a Point struct in this way:
typedef struct
{
int x, y;
} Point;
and also in this way:
typedef struct Point
{
int x, y;
};
What is the difference?
0
votes
1answer
18 views
SWIG cannot convert typedef type correct
I'm using SWIT to convert a vc project to python.
I found when a struct has a member which type is like "typedef char TEXT[16]" cannot be converted correctly.
for example:
typedef char TEXT[16];
...
1
vote
2answers
57 views
Typedef expecting ';' before “”
(Don't bust my nuts about using std::auto_ptr<>, this isn't my code, it's auto-generated. I'm just trying to interface to it.)
I have a function with the following signature:
...
4
votes
1answer
62 views
detecting equivalence of typedefs
In my application, I have a type responsible for computations that (may) involve large numbers and a type that is used for communication between processors.
typedef MyBigIntegerClass bigInt;
typedef ...
0
votes
2answers
21 views
multiple typedef for same type in c
I have seen multiple typedef for same type in c
typedef struct i_data
{
uint32 size;
uint8 *data;
} I_DATA, *I_DATA_PTR;
typedef I_DATA I_TEMP;
typedef I_DATA *I_TEMP_PTR;
typedef I_DATA ...
3
votes
2answers
180 views
In C++, can I typedef an element type from pointer type? [duplicate]
The title says it, look at my minimal example:
template<class ptr_to_t>
void f(ptr_to_t x) {
typedef ptr_to_t t; // does not compile
t elem = *x;
}
int main()
{
int five = 5;
...
0
votes
1answer
32 views
How to return an Iterator--list<T>:: iterator, as function return value
I was implementing an abstract hash-table container. My find() function is properly defined and works fine, as shown below:
template <class HashedObj>
HashedObj& ...
4
votes
1answer
77 views
In a C++ template class, can I typedef the template parameter using the same name?
If I have a template class:
template<typename Layout>
class LayoutHandler : Handler {
};
and I want to expose the parameter Layout to the user of the class.
Then:
template<typename ...
1
vote
3answers
49 views
Struct containing array of structs in objective C
I have a struct for a tile (all properties are previously-defined enums)
typedef struct {
ShapeType shape;
ColorType color;
PatternType pattern;
IconType icon;
} TileDefinition;
And ...
-1
votes
0answers
15 views
nested struct function prototype
void ReadProduct(const char* productName, product_t& product){
printf("Please, input the demand rate of %s: >");
scanf("%d",&product.demandrate);
printf("Please, input the ...
0
votes
4answers
88 views
C vs C++: How to fix? Typedef Enum
I have found that code that works (although with warning) in C is now giving me an error when moved to C++. I'd like to know why this produces an error, and how to resolve.
I am converting someone ...
0
votes
2answers
93 views
Why this C program complies and runs
With curiosity of the definition and scope of typedef I have written below C code in 2 .c files:
main.c
#include <stdio.h>
int main()
{
int a = 5, b = 6;
printf("a = %d, b = %d\n", a, ...
25
votes
3answers
1k views
How do I typedef a function pointer with the C++11 using syntax?
I'd like to write this
typedef void (*FunctionPtr)();
using using. How would I do that?
-2
votes
3answers
75 views
Pointer to struct inside a struct; How to access without errors? [closed]
As far as I know, if the item inside a structure is a pointer, you call it with ->, if it's a normal value it is used ..
here my typedefs:
typedef struct
{
char name[50];
int quantity;
...
-1
votes
4answers
47 views
Segmentation Fault while allocating memory for the member of an struct
#include <stdio.h>
typedef struct {
char **str_array;
} TYPE;
int main () {
TYPE foo;
f (foo);
printf ("> %s\n", foo.str_array[0]);
free (foo.str_array[0]);
...
2
votes
0answers
21 views
How do I trigger Splint's abstract type checker?
I want to use Splint to detect implicit casts between typedefs with the same underlying type, such as in the following code:
typedef int counter;
typedef int delta;
static int func(int a, int b, int ...
2
votes
3answers
46 views
typedef'd array of pointers - copying values
Good day,
I have a few simple typedefs like so:
typedef int dataType;
typedef dataType* arrayOfNPointers[N];
So, dataType represents int, and the type arrayOfNPointers represents an array of N ...
0
votes
4answers
40 views
C++ typedef static function pointer: undefined symbol
//class.h
typedef double (*ffunct)(double x1, double y1, double x2, double y2);
class Class {
public:
static ffunct myfunct;
static void setFunct();
static double ...
3
votes
2answers
56 views
Why is {typedef int* PTR;const PTR p=#} not equivalent to “const int* p=&num” but to “int *const p=&num”?
This thing was partly touched upon in another question on SO, but somewhat casually as it was not the main question. As my confusion still persists, I am putting it in a separate question.
Why are ...
-3
votes
2answers
46 views
how to understand followed code sample about typedef in c++?
using namespace boost;
typedef void (*PtrFunc)(any& );
how to understand above code sample about typedef in c++?
3
votes
2answers
69 views
Creating a stack in C, structure for nodes
I have been given a structure for the nodes that will make up my stack but I am having trouble understanding it.
struct stackNode
{
char data;
struct stackNode *nextPtr;
};
typedef struct ...
3
votes
3answers
43 views
How can I interpret the following typedef statement
How can I interpret following typedef statement.
I already have some knowledge through type convertions. They are used to reinterpret the bytes behind a variable as another type. Example:
unsigned ...
2
votes
1answer
43 views
Using typedef with an instance declaration. Wiki error?
In accordance to this Wiki page, it is possible to write the following structure:
typedef struct my_struct {
int integer;
} my_struct_t instance;
K&R do not mention this in "C Proglamming ...
1
vote
2answers
73 views
Why can't we typedef an (unnamed) structure twice at file scope, but we can typedef “int” twice without error?
The following code compiles and runs fine:
#include <stdio.h>
typedef int Someint;
typedef int Someint;
int main()
{
Someint b = 4;
printf("%d", b);
return 0;
}
The following ...
1
vote
3answers
52 views
Defining a function using a function typedef in C++
I am implementing a service in Windows. VisualStudio 2012 has the following function typedef:
typedef VOID WINAPI SERVICE_MAIN_FUNCTIONW (
DWORD dwNumServicesArgs,
LPWSTR ...
0
votes
1answer
70 views
Defining variable for recursive data structure in C
I have a function sortbyName that returns a recursive data structure sortedList. sortList itself contains a pointer to another recursive data structure stud_type and they are all defined as below.
...
0
votes
1answer
48 views
C++ Shift Elements of an Array of a Struct Containing Structs
I used 2 for-loops to check for a match in both months and days, and when there is a match, i want it to copy the appointments in days[j] into days[i] without changing day[i]'s date. Then, move ...
1
vote
4answers
80 views
Replace all floats with doubles
Is it possible to use some construct to replace all floats with doubles (or the opposite) without refactoring?
For example you may be implementing some mathematical system that works perfectly ...
0
votes
2answers
48 views
When typedef becames an actual type?
During the program compilation there are three main stages:
Preprocessing (all #include, #define, etc. are replaced)
Compilation (producing object files)
Linking (object files are linked to ...
3
votes
2answers
88 views
Implementing a typedef that is only defined under a certain condition
While reading the C++11 Standard 20.8.3, I noticed there were three typedefs that are only defined if a certain condition is fulfilled.
How would one typically go about writing such a conditional ...
1
vote
1answer
76 views
forward declare a template alias
I have an aliased template, defined with the using directive:
template<typename A>
using T=TC<decltype(A::b),decltype(A::c)>;
Does C++11 offer a mechanism to forward declare this ...
-1
votes
1answer
33 views
Sorting the output of a function to display from High to Low
I have a struct, defined as this:
typedef struct structure
{
char names[20];
int scores[4];
float average;
char letter;
} stuff;
And from that struct created this array:
stuff everything[13];
...
1
vote
2answers
34 views
Printing an array of strings during a loop
Writing a function that uses a loop to display a small chart of "names" "e1" "e2" "e3" "e4" "avg" and "grade". In the function I'm having trouble printing the elements stored in the "names" array.
...
4
votes
5answers
109 views
What is (void (**) ()) and how to typedef it?
In an embedded code I have to understand, there's this line of code :
*((void (**) ()) 0x01) = c_int01; /* Write the interrupt routine entry */
I can grasp the fact that you setup the interruption ...
0
votes
2answers
79 views
How do typedef-ed pointers work
typedef int* ptr_t;
int target;
const ptr_t a = ⌖
*a = 6; //OK
a = ⌖ //<- error: assignment of read-only variable ‘a’
Clearly, the pointer is constant, and ...
0
votes
0answers
32 views
OpenCL & Xcode - Incorrect kernel header being generated for custom data type argument
I'm parallelising a LBM using OpenCL and have across a problem regarding how the kernel header files are being generated for a custom data type as an argument to the kernel. I define the data type ...
1
vote
1answer
69 views
Can't Declare friend for Typedef
I have the following :
typedef SP<CVPatModel *> VModel;
class VLIB_API CVPatModel
{
public :
friend VModel;
protected :
virtual void Save( char* szFileName );
}
void ...
2
votes
3answers
61 views
what does this statement in c means?
struct abc
{
//some members
}arrayOf[10];
struct def
{
//some data memebers
}obj;
typedef void (*abc) (obj)
I am not sure what does the statement typedef void (*abc) (obj) implies. Please consider ...
0
votes
1answer
44 views
copying iterator into container (containing pointers to typedef)?
I have a user-defined class Node, a typedef VERTEX and am trying to fill up a vector of VERTEX*, by aiming the pointers at elements in a hash_map containing VERTEX. The problem is that when I try to ...
-1
votes
2answers
40 views
Segmentation Fault in a for loop due to struct?
I had an already working program and now have to change the 4 arrays used into 1, so I used a typedef struct and created a data type called stuff. Then made an array of data type stuff called ...
0
votes
3answers
43 views
Using Typedef to store elements in a 2D Array
I'm changing a program I've already completed (that uses 4 arrays) into a new program that uses typedef to create a structure that holds those arrays, so I'm only using one instead.
To do this, I ...
1
vote
3answers
55 views
Define a c type in bits
I was wondering if you could define a type in bits.
Specifically, I want to define a 24 bits type, in order to store the cumulative number of package lost in RTP.
If not, how can I memcpy 3 bytes ...
0
votes
1answer
46 views
Trying to copy a field of one struct to another struct in c?
So I have code for a Connect Four game in C. The struct I'm using right now is:
typedef struct {int value; board brd; } state ;
typedef char board[8][8] ;
#define BOARD(p_S) (((state *) ...
0
votes
2answers
69 views
typedef in header file not getting picked up by xcode
I have a typedef in A.h file, and I import that A.h file in B.h that makes use of the same typedef.
For the longest time everything worked fine, but now it breaks complaining that it doesn't ...
1
vote
1answer
49 views
CancelIoEx : Function pointer typedef
The following code is copied from MS Async Filter. It is supposed that the following code is calling either CancelIo or CancelIoEx. I don't see where CancelIoEx is called in anyway. It is supposed ...
0
votes
2answers
55 views
the value of C enumeration type using typedef
Do you know the result of ALL_MODULE ?
and do you know in which book describe this situation ?
Thanks a lot. :)
typedef enum
{
MODULE0,
MODULE1,
MODULE2
}MODULE_TAG;
#define ALL_MODULE ...
3
votes
1answer
96 views
Why can't my Curiously Recurring Template Pattern (CRTP) refer to the derived class's typedefs? [duplicate]
When using the curiously recurring template pattern, I am unable to refer to typedefs belonging to the derived class only if I attempt to reference them from the base class; gcc complains no type ...
0
votes
1answer
60 views
making a function with typedef struct with arrays
I was just wondering what I'm doing wrong here? The errors are mostly from my first function, am I calling it wrong?
typedef struct{ //typedef and function prototype
int x, y, radius;
}circle;
...
0
votes
2answers
51 views
Typedef for pointer to a template class method
The title sums my question up - I need a generic typedef for a pointer to a template class method, as explained in the code below. The typedef needs to be generic.
template<typename TYPE>
...





