• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Strangeness when moving data through an array.
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Strangeness when moving data through an array.


  • Subject: Re: Strangeness when moving data through an array.
  • From: Sherm Pendley <email@hidden>
  • Date: Wed, 1 Dec 2004 02:23:48 -0500

On Nov 30, 2004, at 11:55 PM, John Draper wrote:

Now, I take the data from "pkt" and I want to later stick it into a
16 bit (u_short),  and would expect...   short_test=258,  but
after I execute this statement...

   bcopy((u_short)&pkt[MSEQ], &short_test, 2);
short_test = 160

WHY? What's going on? How can I extract data from an array in any arbitrary
index into it (even or odd), and still get back that 2 byte int correctly?

You're typecasting a pointer (&pkt[MSEQ]) to an integer (u_short), which smells fishy.


I'd say you probably need to cast to a different pointer type:

bcopy((u_short *)&pkt[MSEQ], &short_test, 2);

sherm--

Cocoa programming in Perl: http://camelbones.sourceforge.net
Hire me! My resume: http://www.dot-app.org

_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list      (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden


  • Follow-Ups:
    • Re: Strangeness when moving data through an array.
      • From: Andrew Farmer <email@hidden>
References: 
 >Strangeness when moving data through an array. (From: John Draper <email@hidden>)

  • Prev by Date: NSFileManager fun & games
  • Next by Date: Re: NSFileManager fun & games
  • Previous by thread: Strangeness when moving data through an array.
  • Next by thread: Re: Strangeness when moving data through an array.
  • Index(es):
    • Date
    • Thread