Answering SCO Bit by Bit - Streams and more GPL'd header files in Caldera OpenLinux 2.2

 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Answering SCO Bit by Bit - Streams and more GPL'd header files in Caldera OpenLinux 2.2
# 1  
Old 12-22-2009
Answering SCO Bit by Bit - Streams and more GPL'd header files in Caldera OpenLinux 2.2

A reader sends us some more screenshots of Caldera, now SCO Group, distributing header files under the GPL. This time, it's from OpenLinux 2.2-4, dated from 1999.

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. Windows & DOS: Issues & Discussions

Which version of Windows Vista to install with a product key? 32-bit or 64-bit?

Hello everyone. I bought a dell laptop (XPS M1330) online which came without a hard drive. There is a Windows Vista Ultimate OEMAct sticker with product key at the bottom case. I checked dell website (here) for this model and it says this model supports both 32 and 64-bit version of Windows... (4 Replies)
Discussion started by: milhan
4 Replies

2. Shell Programming and Scripting

How to handle 64 bit arithmetic operation at 32 bit compiled perl interpreter?H

Hi, Here is the issue. From the program snippet I have Base: 0x1800000000, Size: 0x3FFE7FFFFFFFF which are of 40 and 56 bits. SO I used use bignum to do the math but summing them up I always failed having correct result. perl interpreter info, perl, v5.8.8 built for... (0 Replies)
Discussion started by: rrd1986
0 Replies

3. Programming

copying or concatinating string from 1st bit, leaving 0th bit

Hello, If i have 2 strings str1 and str2, i would like to copy/concatenate str2 to str1, from 1st bit leaving the 0th bit. How do i do it? (2 Replies)
Discussion started by: jazz
2 Replies
Login or Register to Ask a Question
curs_inwch(3)						     Library Functions Manual						     curs_inwch(3)

NAME
curs_inwch, inwch, winwch, mvinwch, mvwinwch - Get a wchar_t character and its attributes from a Curses window SYNOPSIS
#include <curses.h> chtype inwch( void ); chtype winwch( WINDOW *win ); chtype mvinwch( int y, int x ); chtype mvwinwch( WINDOW *win, int y, int x ); LIBRARY
Curses Library (libcurses) DESCRIPTION
These routines return the wide character, of type chtype, at the current or specified position in the current or specified window. If any attributes are set for that position, their values included in the returned value through an inclusive OR operation. Constants defined in <curses.h> can be used with the & (logical AND) operator to extract the character or attributes alone. Attributes The following bit-masks may be used (logical AND operation) with characters returned by winwch: Bit-mask to extract character Bit-mask to extract attributes Bit-mask to extract color-pair field information NOTES
The header file <curses.h> automatically includes the header file <stdio.h>. Note that all of these routines except winwch may be macros. The routines described on this reference page are among the MNLS Curses functions that are not included in the X/Open Curses CAE specifica- tion. MNLS routines are supported only for backward compatibility reasons. Use the *in_wch functions in new applications (see curs_in_wch(3)). SEE ALSO
Functions: curses(3), curs_in_wch(3) curs_inwch(3)