Search

March 13, 2004
D »
...char *p, int *len );

which fills in p with values and sets len to the...
March 11, 2004
c++.stlsoft »
...s)
 {
  int len = GetWindowTextLength(w);
  if( (len != 0) && (len != -1) )
  {
   s.resize(len);
   GetWindowText(w...
February 17, 2004
D »
...text, int len) { ... }

or like:
pass(char[]) char[] left(char[] text, int len) { ... }

I suppose...
February 16, 2004
D »
...Ie:

...
static(char[]) left(char[] foo, int len) {
  // ...
}
...

Which would instruct the compiler to make...
February 02, 2004
D »
...ppdata )
{
int len = atoi(X_LN);
sprintf(globuf,"%c%.*s --> %c%.*s",dim,len,X...
February 01, 2004
GDC »
...da;
    if (x > 10) goto FOO;

    /*    printf("len=%u\n",da.length);  length property doesn...
January 30, 2004
D »
...se2->op == TOKstring);

    int len1 = len;
    int len2 = se2->len;

    if (len1 == len2)
    {
	switch (sz...
January 23, 2004
c++ »
...cout << array_len(a) << '\n';
    cout << array_len(b) << '\n';
    cout << array_len(c) << '\n';
}

January 13, 2004
c++.idde »
...IS not just "something else"
Error: 'hdr__len' previously declared as something else

would be...
December 19, 2003
D »
...forgetting that arrays themselves (i.e. the len+ptr structures)
are passed by value.

Blonde...
144 145 146 147 148 149 150 151 152 153 154
Next ›   Last »