Changeset 649
- Timestamp:
- Sep 7, 2003, 5:20:58 AM (22 years ago)
- Location:
- trunk/src/emx/src
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/src/lib/iconv/iconv.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r648 r649 1 /* OS/2 iconv() implementation through OS/2 Unicode API 2 Copyright (C) 2001-2002 Free Software Foundation, Inc. 3 4 This program is free software; you can redistribute it and/or modify it 5 under the terms of the GNU Library General Public License as published 6 by the Free Software Foundation; either version 2, or (at your option) 7 any later version. 8 9 This program is distributed in the hope that it will be useful, 10 but WITHOUT ANY WARRANTY; without even the implied warranty of 11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 Library General Public License for more details. 13 14 You should have received a copy of the GNU Library General Public 15 License along with this program; if not, write to the Free Software 16 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 17 USA. */ 18 19 /* 20 This file implements an iconv wrapper based on OS/2 Unicode API. 21 */ 1 /* iconv wrapper based on OS/2 Unicode API. */ 22 2 23 3 #include <uconv.h> -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/io/_tempnam.c
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r648 r649 28 28 29 29 30 char *_ tempnam(const char *dir, const char *prefix)30 char *_STD(tempnam) (const char *dir, const char *prefix) 31 31 { 32 32 const char *tmpdir; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/termios/cfgetisp.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r648 r649 4 4 #include <sys/termio.h> /* CBAUD */ 5 5 6 speed_t _ cfgetispeed(const struct termios *ptermios)6 speed_t _STD(cfgetispeed) (const struct termios *ptermios) 7 7 { 8 8 return ptermios->c_cflag & CBAUD; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/termios/cfgetosp.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r648 r649 4 4 #include <sys/termio.h> /* CBAUD */ 5 5 6 speed_t _ cfgetospeed(const struct termios *ptermios)6 speed_t _STD(cfgetospeed) (const struct termios *ptermios) 7 7 { 8 8 return ptermios->c_cflag & CBAUD; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/termios/cfsetisp.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r648 r649 4 4 #include <errno.h> 5 5 6 int _cfsetspeed (struct termios *ptermios, speed_t speed); 7 8 int _cfsetispeed (struct termios *ptermios, speed_t speed) 6 int _STD(cfsetispeed) (struct termios *ptermios, speed_t speed) 9 7 { 10 return _cfsetspeed (ptermios, speed);8 return cfsetspeed (ptermios, speed); 11 9 } -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/termios/cfsetosp.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r648 r649 3 3 #include <termios.h> 4 4 5 int _cfsetspeed (struct termios *ptermios, speed_t speed); 6 7 int _cfsetospeed (struct termios *ptermios, speed_t speed) 5 int _STD(cfsetospeed) (struct termios *ptermios, speed_t speed) 8 6 { 9 return _cfsetspeed (ptermios, speed);7 return cfsetspeed (ptermios, speed); 10 8 } -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/termios/cfsetspe.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r648 r649 5 5 #include <sys/termio.h> /* CBAUD */ 6 6 7 int _ cfsetspeed(struct termios *ptermios, speed_t speed)7 int _STD(cfsetspeed) (struct termios *ptermios, speed_t speed) 8 8 { 9 9 /* speed is always >= B0 as speed_t is unsigned and B0 is zero. */ -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/termios/tcdrain.c
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r648 r649 4 4 #include <sys/ioctl.h> 5 5 6 int _ tcdrain(int handle)6 int _STD(tcdrain) (int handle) 7 7 { 8 8 return ioctl (handle, TCSBRK, 1); -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/termios/tcflow.c
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r648 r649 4 4 #include <sys/ioctl.h> 5 5 6 int _ tcflow(int handle, int action)6 int _STD(tcflow) (int handle, int action) 7 7 { 8 8 return ioctl (handle, TCXONC, action); -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/termios/tcflush.c
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r648 r649 4 4 #include <sys/ioctl.h> 5 5 6 int _ tcflush(int handle, int queue)6 int _STD(tcflush) (int handle, int queue) 7 7 { 8 8 return ioctl (handle, TCFLSH, queue); -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/termios/tcgetatt.c
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r648 r649 4 4 #include <sys/ioctl.h> 5 5 6 int _ tcgetattr(int handle, struct termios *ptermios)6 int _STD(tcgetattr) (int handle, struct termios *ptermios) 7 7 { 8 8 return ioctl (handle, _TCGA, ptermios); -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/termios/tcgetpgr.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r648 r649 5 5 #include <sys/types.h> 6 6 7 pid_t _ tcgetpgrp(int fd)7 pid_t _STD(tcgetpgrp) (int fd) 8 8 { 9 9 errno = ENOSYS; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/termios/tcsendbr.c
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r648 r649 5 5 #include <sys/ioctl.h> 6 6 7 int _ tcsendbreak(int handle, int duration)7 int _STD(tcsendbreak) (int handle, int duration) 8 8 { 9 9 return ioctl (handle, TCSBRK, duration); -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/termios/tcsetatt.c
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r648 r649 5 5 #include <sys/ioctl.h> 6 6 7 int _ tcsetattr(int handle, int options, const struct termios *ptermios)7 int _STD(tcsetattr) (int handle, int options, const struct termios *ptermios) 8 8 { 9 9 int request; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/termios/tcsetpgr.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r648 r649 5 5 #include <sys/types.h> 6 6 7 int _ tcsetpgrp(int fd, pid_t pgrp)7 int _STD(tcsetpgrp) (int fd, pid_t pgrp) 8 8 { 9 9 errno = ENOSYS; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/libiconv/iconv.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r648 r649 1 /* OS/2 iconv() implementation through OS/2 Unicode API 2 Copyright (C) 2001-2002 Free Software Foundation, Inc. 3 4 This program is free software; you can redistribute it and/or modify it 5 under the terms of the GNU Library General Public License as published 6 by the Free Software Foundation; either version 2, or (at your option) 7 any later version. 8 9 This program is distributed in the hope that it will be useful, 10 but WITHOUT ANY WARRANTY; without even the implied warranty of 11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 Library General Public License for more details. 13 14 You should have received a copy of the GNU Library General Public 15 License along with this program; if not, write to the Free Software 16 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 17 USA. */ 18 19 /* 20 This file implements an iconv wrapper based on OS/2 Unicode API. 21 */ 1 /* iconv wrapper based on OS/2 Unicode API. */ 22 2 23 3 #include <uconv.h> -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.