fw/pdclib
6 years agoOn altos, the primitive input function is ao_getchar, not getchar master
Keith Packard [Mon, 11 Dec 2017 20:09:30 +0000 (12:09 -0800)]
On altos, the primitive input function is ao_getchar, not getchar

Signed-off-by: Keith Packard <keithp@keithp.com>
7 years agoUse arm-specific version of 'ar' instead of system one
Keith Packard [Thu, 22 Sep 2016 00:16:23 +0000 (03:16 +0300)]
Use arm-specific version of 'ar' instead of system one

I suspect this may be causing problems building arm binaries on mips
and mipsel hosts.

Signed-off-by: Keith Packard <keithp@keithp.com>
8 years agoBuild cortex-m4 version of pdclib
Keith Packard [Mon, 30 Nov 2015 02:21:43 +0000 (20:21 -0600)]
Build cortex-m4 version of pdclib

We're using the m4 version until the arm binutils package gains
support for the m7.

Signed-off-by: Keith Packard <keithp@keithp.com>
10 years agoIgnore build files
Keith Packard [Wed, 18 Dec 2013 22:04:19 +0000 (14:04 -0800)]
Ignore build files

10 years agoAdd lintian-overrides
Keith Packard [Thu, 17 Oct 2013 22:25:55 +0000 (15:25 -0700)]
Add lintian-overrides

Signed-off-by: Keith Packard <keithp@keithp.com>
10 years agodebian: Switch to Architecture: any
Keith Packard [Thu, 10 Oct 2013 06:41:42 +0000 (23:41 -0700)]
debian: Switch to Architecture: any

This package doesn't have any debian binary bits which are CPU
dependent, so don't require per-CPU builds

Signed-off-by: Keith Packard <keithp@keithp.com>
10 years agoSet prefix on make command line
Keith Packard [Wed, 9 Oct 2013 23:00:06 +0000 (16:00 -0700)]
Set prefix on make command line

This makes the debian build process cleaner

Signed-off-by: Keith Packard <keithp@keithp.com>
10 years agodebian: Initial debian packaging bits
Keith Packard [Wed, 9 Oct 2013 20:32:05 +0000 (13:32 -0700)]
debian: Initial debian packaging bits

Signed-off-by: Keith Packard <keithp@keithp.com>
10 years agoAllow platform to *not* include some header files upstream
Keith Packard [Thu, 10 Oct 2013 06:21:27 +0000 (23:21 -0700)]
Allow platform to *not* include some header files

If the underlying platform compiler provides header files, then use
those instead of the ones here.

Signed-off-by: Keith Packard <keithp@keithp.com>
10 years agoAllow prefix on make command line
Keith Packard [Thu, 10 Oct 2013 06:24:33 +0000 (23:24 -0700)]
Allow prefix on make command line

10 years agoUse packaged gcc-arm-none-eabi compiler
Keith Packard [Tue, 8 Oct 2013 04:04:39 +0000 (21:04 -0700)]
Use packaged gcc-arm-none-eabi compiler

Signed-off-by: Keith Packard <keithp@keithp.com>
11 years agoah, pdclib.a only gets created when something is weird
Bdale Garbee [Mon, 22 Apr 2013 18:42:17 +0000 (12:42 -0600)]
ah, pdclib.a only gets created when something is weird

11 years agoclean up after ourselves properly
Bdale Garbee [Mon, 22 Apr 2013 18:39:22 +0000 (12:39 -0600)]
clean up after ourselves properly

11 years agoMove toolchain to /opt/cortex
Keith Packard [Mon, 22 Apr 2013 16:02:59 +0000 (11:02 -0500)]
Move toolchain to /opt/cortex

Signed-off-by: Keith Packard <keithp@keithp.com>
11 years agoActually use $(CPU) when building object files. Add clean target.
Keith Packard [Thu, 18 Apr 2013 13:38:21 +0000 (08:38 -0500)]
Actually use $(CPU) when building object files. Add clean target.

Signed-off-by: Keith Packard <keithp@keithp.com>
11 years agoAdd support for building multiple architectures
Keith Packard [Mon, 15 Apr 2013 17:21:10 +0000 (10:21 -0700)]
Add support for building multiple architectures

This builds cortex-m3 and cortex-m0 libraries, installing them with
separate names.

Signed-off-by: Keith Packard <keithp@keithp.com>
11 years agoRewrite int printing to be non-recursive. Limit ints to 32 bits
Keith Packard [Fri, 16 Nov 2012 15:38:40 +0000 (07:38 -0800)]
Rewrite int printing to be non-recursive. Limit ints to 32 bits

This saves a ton of CPU time and stack space

Signed-off-by: Keith Packard <keithp@keithp.com>
12 years agoStub out most of stdio on AltOS
Keith Packard [Mon, 19 Mar 2012 05:42:33 +0000 (22:42 -0700)]
Stub out most of stdio on AltOS

We're only using stdio for printf support, so stub out most of the
rest of it. A more complete job could be done, but this seems
sufficient for now.

Signed-off-by: Keith Packard <keithp@keithp.com>
12 years agoAdd 'install' targets
Keith Packard [Sat, 17 Mar 2012 02:50:52 +0000 (19:50 -0700)]
Add 'install'  targets

Supports both DESTDIR and prefix values; set as you please

Signed-off-by: Keith Packard <keithp@keithp.com>
12 years agoAdd .gitignore
Keith Packard [Sat, 17 Mar 2012 02:50:42 +0000 (19:50 -0700)]
Add .gitignore

Signed-off-by: Keith Packard <keithp@keithp.com>
12 years agoMark constant data as const
Keith Packard [Sat, 17 Mar 2012 02:33:45 +0000 (19:33 -0700)]
Mark constant data as const

The sticks it in the .rodata section, allowing it to be placed in rom.

Signed-off-by: Keith Packard <keithp@keithp.com>
12 years agoBuild library in 'build' directory. Allows replacing generic code
Keith Packard [Sat, 17 Mar 2012 02:21:13 +0000 (19:21 -0700)]
Build library in 'build' directory. Allows replacing generic code

By linking all of the source files into the 'build' directory, the
platform can replace any of them with different versions.

Signed-off-by: Keith Packard <keithp@keithp.com>
12 years agoAdd altos platform
Keith Packard [Sat, 17 Mar 2012 02:20:36 +0000 (19:20 -0700)]
Add altos platform

This has all of the stubs necessary to run pdclib on AltOS

Signed-off-by: Keith Packard <keithp@keithp.com>
12 years agoImproved by Caleb1994 of osdev.org.
solar [Sun, 9 Oct 2011 11:17:58 +0000 (11:17 +0000)]
Improved by Caleb1994 of osdev.org.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@520 546481bc-9713-0410-bf18-d3337bbf4a3e

12 years agoFixing #47 (*snprint() crash).
solar [Mon, 13 Jun 2011 13:40:45 +0000 (13:40 +0000)]
Fixing #47 (*snprint() crash).

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@519 546481bc-9713-0410-bf18-d3337bbf4a3e

12 years agoAdded LC_* definitions.
solar [Mon, 13 Jun 2011 10:13:23 +0000 (10:13 +0000)]
Added LC_* definitions.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@518 546481bc-9713-0410-bf18-d3337bbf4a3e

12 years agoFixes #45.
solar [Mon, 13 Jun 2011 10:03:13 +0000 (10:03 +0000)]
Fixes #45.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@517 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoFixed prototype warnings.
solar [Thu, 17 Mar 2011 05:59:31 +0000 (05:59 +0000)]
Fixed prototype warnings.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@516 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agofind did not match on symlinks.
solar [Thu, 17 Mar 2011 05:47:37 +0000 (05:47 +0000)]
find did not match on symlinks.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@515 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoBackported improvements to Makefile from OSDev.
solar [Thu, 17 Mar 2011 05:28:07 +0000 (05:28 +0000)]
Backported improvements to Makefile from OSDev.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@514 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoFix for #42 - free( NULL ) must not fail.
solar [Sun, 20 Feb 2011 20:48:48 +0000 (20:48 +0000)]
Fix for #42 - free( NULL ) must not fail.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@513 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoIt seems I have to review the list of warning options if I missed this one.
solar [Tue, 11 Jan 2011 05:52:32 +0000 (05:52 +0000)]
It seems I have to review the list of warning options if I missed this one.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@512 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoFix for #41.
solar [Tue, 11 Jan 2011 05:49:19 +0000 (05:49 +0000)]
Fix for #41.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@511 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoI am not sure I understood strcoll() and strxfrm() correctly, but this is it for...
solar [Fri, 31 Dec 2010 08:47:37 +0000 (08:47 +0000)]
I am not sure I understood strcoll() and strxfrm() correctly, but this is it for now.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@510 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoLanguage.
solar [Thu, 30 Dec 2010 22:46:02 +0000 (22:46 +0000)]
Language.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@509 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoAddressed ticket #40 (non-standard errno values).
solar [Thu, 30 Dec 2010 22:43:20 +0000 (22:43 +0000)]
Addressed ticket #40 (non-standard errno values).

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@508 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agolocaleconv, and setlocale (C locale only)
solar [Wed, 29 Dec 2010 13:31:51 +0000 (13:31 +0000)]
localeconv, and setlocale (C locale only)

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@507 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoMoved ctype info into struct lconv.
solar [Wed, 29 Dec 2010 13:19:53 +0000 (13:19 +0000)]
Moved ctype info into struct lconv.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@506 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoctype
solar [Wed, 29 Dec 2010 06:25:59 +0000 (06:25 +0000)]
ctype

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@505 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoForgot parameter type.
solar [Thu, 23 Dec 2010 06:16:56 +0000 (06:16 +0000)]
Forgot parameter type.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@504 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoStarted out on v0.6.
solar [Thu, 23 Dec 2010 06:15:28 +0000 (06:15 +0000)]
Started out on v0.6.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@503 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoComment on v0.5 release
solar [Wed, 22 Dec 2010 21:44:28 +0000 (21:44 +0000)]
Comment on v0.5 release

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@501 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoBasic tests for %c, %s, %[ and %p.
solar [Mon, 20 Dec 2010 07:15:23 +0000 (07:15 +0000)]
Basic tests for %c, %s, %[ and %p.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@500 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoSome testcases for scanf(). Fixed bug with %*... . Fixed artifact in Makefile.
solar [Mon, 20 Dec 2010 05:17:35 +0000 (05:17 +0000)]
Some testcases for scanf(). Fixed bug with %*... . Fixed artifact in Makefile.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@499 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoMoved the macro magic into the common header.
solar [Fri, 17 Dec 2010 06:05:00 +0000 (06:05 +0000)]
Moved the macro magic into the common header.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@498 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoCleaning up TODOs.
solar [Thu, 16 Dec 2010 07:05:57 +0000 (07:05 +0000)]
Cleaning up TODOs.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@497 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoCleaning up TODOs.
solar [Thu, 16 Dec 2010 06:00:24 +0000 (06:00 +0000)]
Cleaning up TODOs.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@496 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoMore cleaning up.
solar [Wed, 15 Dec 2010 06:35:38 +0000 (06:35 +0000)]
More cleaning up.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@495 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoTightening the code a bit.
solar [Tue, 14 Dec 2010 12:09:18 +0000 (12:09 +0000)]
Tightening the code a bit.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@494 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoFixed safeguard calculation in ftell().
solar [Tue, 14 Dec 2010 06:16:35 +0000 (06:16 +0000)]
Fixed safeguard calculation in ftell().

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@493 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoNine-to-five job calling, leaving this intermediate.
solar [Mon, 13 Dec 2010 07:40:43 +0000 (07:40 +0000)]
Nine-to-five job calling, leaving this intermediate.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@492 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoWhoops. That wouldn't have worked...
solar [Sun, 12 Dec 2010 21:32:44 +0000 (21:32 +0000)]
Whoops. That wouldn't have worked...

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@491 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoEOL handling is for text mode conversion.
solar [Sat, 11 Dec 2010 09:16:11 +0000 (09:16 +0000)]
EOL handling is for text mode conversion.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@490 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoWe will cross that bridge when we come to it.
solar [Sat, 11 Dec 2010 09:14:39 +0000 (09:14 +0000)]
We will cross that bridge when we come to it.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@489 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoReplaced the dumb PATCHFILES with a smart for-find.
solar [Sat, 11 Dec 2010 09:12:24 +0000 (09:12 +0000)]
Replaced the dumb PATCHFILES with a smart for-find.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@488 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoAdded testdriver for signals, make links now including signal.h
solar [Fri, 10 Dec 2010 07:41:09 +0000 (07:41 +0000)]
Added testdriver for signals, make links now including signal.h

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@487 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoAdjusted Makefile and svn:ignore for signal/.
solar [Fri, 10 Dec 2010 06:26:29 +0000 (06:26 +0000)]
Adjusted Makefile and svn:ignore for signal/.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@486 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoCompleted <signal.h>, and moved into platform.
solar [Fri, 10 Dec 2010 06:21:48 +0000 (06:21 +0000)]
Completed <signal.h>, and moved into platform.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@485 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoPut printf() / scanf() test macros in seperate header.
solar [Thu, 9 Dec 2010 07:14:21 +0000 (07:14 +0000)]
Put printf() / scanf() test macros in seperate header.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@484 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoPreliminary signal handling.
solar [Thu, 9 Dec 2010 07:13:57 +0000 (07:13 +0000)]
Preliminary signal handling.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@483 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoSVN properties cleanup.
solar [Thu, 9 Dec 2010 05:18:55 +0000 (05:18 +0000)]
SVN properties cleanup.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@482 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoReworked scanf() testing. General cleanups.
solar [Wed, 8 Dec 2010 05:53:09 +0000 (05:53 +0000)]
Reworked scanf() testing. General cleanups.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@481 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoTest drivers for fgetpos, fsetpos, and perror. Cannot really test closeall().
solar [Mon, 6 Dec 2010 21:21:45 +0000 (21:21 +0000)]
Test drivers for fgetpos, fsetpos, and perror. Cannot really test closeall().

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@480 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agofseek() test driver.
solar [Mon, 6 Dec 2010 19:54:29 +0000 (19:54 +0000)]
fseek() test driver.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@479 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoTest driver (and much-needed fixes) to fgets().
solar [Fri, 3 Dec 2010 05:59:00 +0000 (05:59 +0000)]
Test driver (and much-needed fixes) to fgets().

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@478 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoTestdriver for gets(). Turns out fseek() was not tested yet.
solar [Thu, 2 Dec 2010 21:16:06 +0000 (21:16 +0000)]
Testdriver for gets(). Turns out fseek() was not tested yet.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@477 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoTestdriver for tmpfile().
solar [Thu, 2 Dec 2010 07:36:59 +0000 (07:36 +0000)]
Testdriver for tmpfile().

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@476 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoTest driver for freopen().
solar [Thu, 2 Dec 2010 07:19:35 +0000 (07:19 +0000)]
Test driver for freopen().

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@475 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoUsing constants for testfile names
solar [Thu, 2 Dec 2010 06:20:16 +0000 (06:20 +0000)]
Using constants for testfile names

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@474 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoSwitched to tmpfile() where appropriate.
solar [Wed, 1 Dec 2010 22:01:42 +0000 (22:01 +0000)]
Switched to tmpfile() where appropriate.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@473 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoSome cleanups and corrected typos.
solar [Wed, 1 Dec 2010 21:34:16 +0000 (21:34 +0000)]
Some cleanups and corrected typos.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@472 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years ago*Much* better.
solar [Wed, 1 Dec 2010 21:05:43 +0000 (21:05 +0000)]
*Much* better.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@471 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoBetter error reporting on printf's.
solar [Tue, 30 Nov 2010 23:56:38 +0000 (23:56 +0000)]
Better error reporting on printf's.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@470 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoStatus review.
solar [Sun, 21 Nov 2010 12:17:15 +0000 (12:17 +0000)]
Status review.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@469 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoFixed broken filename handling in freopen().
solar [Sat, 20 Nov 2010 08:53:56 +0000 (08:53 +0000)]
Fixed broken filename handling in freopen().

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@468 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoBug #39: fclose( stdout ) corrupts memory
solar [Sat, 20 Nov 2010 06:01:42 +0000 (06:01 +0000)]
Bug #39: fclose( stdout ) corrupts memory

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@467 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoThanks where thanks is due.
solar [Fri, 19 Nov 2010 05:36:52 +0000 (05:36 +0000)]
Thanks where thanks is due.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@466 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoFixing bug #37 and #38.
solar [Fri, 19 Nov 2010 05:33:50 +0000 (05:33 +0000)]
Fixing bug #37 and #38.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@465 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoprintf / scanf macros in inttypes.h.
solar [Tue, 9 Nov 2010 06:52:32 +0000 (06:52 +0000)]
printf / scanf macros in inttypes.h.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@464 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agogit-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@463 546481bc-9713-0410-bf18...
solar [Tue, 2 Nov 2010 20:54:11 +0000 (20:54 +0000)]
git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@463 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoStreamlined printf testing.
solar [Fri, 1 Oct 2010 18:28:28 +0000 (18:28 +0000)]
Streamlined printf testing.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@462 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoImproved reporting by printf tests.
solar [Sun, 26 Sep 2010 15:40:37 +0000 (15:40 +0000)]
Improved reporting by printf tests.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@461 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoProper handling of dependencies. (Related to #26.)
solar [Sun, 26 Sep 2010 08:36:44 +0000 (08:36 +0000)]
Proper handling of dependencies. (Related to #26.)

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@460 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoProper handling of dependencies. (Related to #26.)
solar [Sun, 26 Sep 2010 07:11:41 +0000 (07:11 +0000)]
Proper handling of dependencies. (Related to #26.)

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@459 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoProper handling of dependencies. (Related to #26.)
solar [Sun, 26 Sep 2010 06:30:44 +0000 (06:30 +0000)]
Proper handling of dependencies. (Related to #26.)

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@458 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoReworked dependency handling.
solar [Sun, 1 Aug 2010 07:19:28 +0000 (07:19 +0000)]
Reworked dependency handling.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@457 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoUncovered severe formatting bug with one-digit numbers. Not fixed yet, but better...
solar [Wed, 21 Jul 2010 06:08:13 +0000 (06:08 +0000)]
Uncovered severe formatting bug with one-digit numbers. Not fixed yet, but better than before.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@456 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoFormatting bug.
solar [Tue, 20 Jul 2010 04:27:34 +0000 (04:27 +0000)]
Formatting bug.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@455 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoSet svn:ignore on testing. Modified Makefile.
solar [Mon, 19 Jul 2010 20:11:00 +0000 (20:11 +0000)]
Set svn:ignore on testing. Modified Makefile.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@454 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoMoved reference files to platform subdirs.
solar [Mon, 19 Jul 2010 20:04:10 +0000 (20:04 +0000)]
Moved reference files to platform subdirs.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@453 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoMade printf() testcases 32/64 bit agnostic.
solar [Mon, 19 Jul 2010 15:17:37 +0000 (15:17 +0000)]
Made printf() testcases 32/64 bit agnostic.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@452 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoFurther streamlined testing.
solar [Mon, 19 Jul 2010 14:16:52 +0000 (14:16 +0000)]
Further streamlined testing.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@451 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoForgot to switch this one to unified include.
solar [Mon, 19 Jul 2010 11:44:34 +0000 (11:44 +0000)]
Forgot to switch this one to unified include.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@450 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoCleaned up the testing a bit.
solar [Mon, 19 Jul 2010 11:36:38 +0000 (11:36 +0000)]
Cleaned up the testing a bit.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@449 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoMoved test-related files to testing subdirectory (i.e., out of the way).
solar [Mon, 19 Jul 2010 09:47:39 +0000 (09:47 +0000)]
Moved test-related files to testing subdirectory (i.e., out of the way).

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@448 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoScrapped seperate testing for vscanf().
solar [Mon, 19 Jul 2010 09:22:54 +0000 (09:22 +0000)]
Scrapped seperate testing for vscanf().

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@447 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoDisabled 'special case' tests for regression.
solar [Mon, 19 Jul 2010 09:00:16 +0000 (09:00 +0000)]
Disabled 'special case' tests for regression.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@446 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoProper handling of end-of-string.
solar [Mon, 19 Jul 2010 07:40:52 +0000 (07:40 +0000)]
Proper handling of end-of-string.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@445 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoType error resulting in improper handling of values > 127 and EOF.
solar [Mon, 19 Jul 2010 07:35:14 +0000 (07:35 +0000)]
Type error resulting in improper handling of values > 127 and EOF.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@444 546481bc-9713-0410-bf18-d3337bbf4a3e

13 years agoscanf() returns -1 on early input error.
solar [Mon, 19 Jul 2010 05:19:04 +0000 (05:19 +0000)]
scanf() returns -1 on early input error.

git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@443 546481bc-9713-0410-bf18-d3337bbf4a3e