Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
NuttX RTOS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
f4grx
NuttX RTOS
Commits
301f2156
Commit
301f2156
authored
9 years ago
by
Stavros Polymenis
Committed by
Gregory Nutt
9 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add support for div() to the C library. From OrbitalFox
parent
dd7ffa48
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
Documentation
+1
-1
1 addition, 1 deletion
Documentation
include/stdlib.h
+18
-2
18 additions, 2 deletions
include/stdlib.h
libc/stdlib/Make.defs
+2
-2
2 additions, 2 deletions
libc/stdlib/Make.defs
libc/stdlib/lib_div.c
+80
-0
80 additions, 0 deletions
libc/stdlib/lib_div.c
with
101 additions
and
5 deletions
Documentation
@
ce750c08
Subproject commit
8cc114a79fd2b9b61aa4dd6185feafd9b4acf805
Subproject commit
ce750c0899c2138b37b52a48d020a3eceb92fd04
This diff is collapsed.
Click to expand it.
include/stdlib.h
+
18
−
2
View file @
301f2156
/****************************************************************************
* include/stdlib.h
*
* Copyright (C) 2007-201
4
Gregory Nutt. All rights reserved.
* Copyright (C) 2007-201
5
Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
...
...
@@ -95,6 +95,16 @@ struct mallinfo
* by free (not in use) chunks.*/
};
/* Structure type returned by the div() function. */
struct
div_s
{
int
quot
;
/* Quotient */
int
rem
;
/* Remainder */
};
typedef
struct
div_s
div_t
;
/****************************************************************************
* Public Function Prototypes
****************************************************************************/
...
...
@@ -170,13 +180,19 @@ FAR void *memalign(size_t, size_t);
FAR
void
*
zalloc
(
size_t
);
FAR
void
*
calloc
(
size_t
,
size_t
);
/*
Mis
c */
/*
Arithmeti
c */
int
abs
(
int
j
);
#ifdef CONFIG_CAN_PASS_STRUCTS
div_t
div
(
int
numer
,
int
denom
);
#endif
long
int
labs
(
long
int
j
);
#ifdef CONFIG_HAVE_LONG_LONG
long
long
int
llabs
(
long
long
int
j
);
#endif
/* Temporary files */
int
mktemp
(
FAR
char
*
path_template
);
int
mkstemp
(
FAR
char
*
path_template
);
...
...
This diff is collapsed.
Click to expand it.
libc/stdlib/Make.defs
+
2
−
2
View file @
301f2156
############################################################################
# libc/stdlib/Make.defs
#
# Copyright (C) 2012 Gregory Nutt. All rights reserved.
# Copyright (C) 2012
, 2015
Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org>
#
# Redistribution and use in source and binary forms, with or without
...
...
@@ -35,7 +35,7 @@
# Add the stdlib C files to the build
CSRCS += lib_abs.c lib_abort.c lib_imaxabs.c lib_itoa.c lib_labs.c
CSRCS += lib_abs.c lib_abort.c
lib_div.c
lib_imaxabs.c lib_itoa.c lib_labs.c
CSRCS += lib_llabs.c lib_rand.c lib_qsort.c
CSRCS += lib_strtol.c lib_strtoll.c lib_strtoul.c lib_strtoull.c
CSRCS += lib_strtod.c lib_checkbase.c
...
...
This diff is collapsed.
Click to expand it.
libc/stdlib/lib_div.c
0 → 100644
+
80
−
0
View file @
301f2156
/****************************************************************************
* libc/stdlib/lib_div.c
*
* Copyright (C) 2015 Stavros Polymenis. All rights reserved.
* Author: Stavros Polymenis <sp@orbitalfox.com>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
* 3. Neither the name NuttX nor the names of its contributors may be
* used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
************************************************************************/
/****************************************************************************
* Included Files
****************************************************************************/
#include
<nuttx/config.h>
#include
<nuttx/compiler.h>
#include
<stdlib.h>
#ifdef CONFIG_CAN_PASS_STRUCTS
/****************************************************************************
* Public Functions
****************************************************************************/
/****************************************************************************
* Name: div
*
* Description:
* The div() function computes the quotient and remainder of the division
* of the numerator 'numer' by the denominator 'denom". If the division is
* inexact, the resulting quotient is the integer of lesser magnitude that
* is the nearest to the algebraic quotient. If the result cannot be
* represented, the behavior is undefined; otherwise, quot * denom + rem
* will equal 'numer'.
*
* Input Parameters:
* numer - Numerator of the Division
* denom - Denominator of the division
*
* Returned Value:
* The result of the devision represent as values of type div_t
*
****************************************************************************/
div_t
div
(
int
numer
,
int
denom
)
{
div_t
f
;
f
.
quot
=
numer
/
denom
;
f
.
rem
=
numer
%
denom
;
return
f
;
}
#endif
/* CONFIG_CAN_PASS_STRUCTS */
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment