Search

November 03, 2011
General »
...VirtualDub project. Unsigned type is always >= 0.

typedef unsigned short wint_t;
...
void lexungetc(wint...
November 01, 2011
General »
As others have mentioned, typedef is being deprecated. That said, variant now supports duck-typing...
November 01, 2011
General »
...not gone there - just as well.

Forgetting typedef, which I should assume does not exist...
October 31, 2011
General »
...like:

struct X
{
  int a;
  double b;
}
typedef X Y;
alias X Z;

void discriminate...
October 31, 2011
General »
typedef shouldn't exist anymore, use alias.

Steve Teale Wrote:
October 31, 2011
General »
...struct B
{
   int p, q, r, s;
}
typedef B C;

void main()
{
   B b;
   C...
October 19, 2011
General »
...Fragment N3":


#define SEC_ASN1_CHOICE        0x100000

typedef struct sec_ASN1Template_struct {
  unsigned long kind...
October 19, 2011
Issues »
...Fragment N3:

#define SEC_ASN1_CHOICE        0x100000

typedef struct sec_ASN1Template_struct {
  unsigned long kind...
October 17, 2011
General »
...Hum, but _t in C stands for typedef. Wouldn't it be better to just...
October 09, 2011
General »
...not actually a C long but rather a typedef that varies in some other way?
143 144 145 146 147 148 149 150 151 152 153
Next ›   Last »