Setting analog in pins to output?

How would I set the analog in pins to output? In "normal" C I would just do DDRB = 0x11111111 or something but I don't know how to do it in Arduino. I just need the pins to be set for output and that's it (I dont need the digitalWrite things or anything). Thanks!

http://arduino.cc/playground/Learning/Pins

The Analog Pins 0~5 are also known as Digital I/O 14~19. Use the latter numbers with pinMode() and digitalRead()/digitalWrite().