13
0

Add PBD::ffs function

This commit is contained in:
Tim Mayberry 2013-07-17 19:29:34 +10:00
parent 11335e4bf0
commit 5f2fcb2e32
3 changed files with 63 additions and 0 deletions

35
libs/pbd/ffs.cc Normal file
View File

@ -0,0 +1,35 @@
/*
Copyright (C) 2013 Tim Mayberry
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "pbd/ffs.h"
#include <strings.h>
namespace PBD {
int
ffs (int x)
{
#if defined(WIN32) && defined(__GNUC__)
return __builtin_ffs(x);
#else
return ffs(x);
#endif
}
}

27
libs/pbd/pbd/ffs.h Normal file
View File

@ -0,0 +1,27 @@
/*
Copyright (C) 2013 Tim Mayberry
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef __libpbd_ffs_h__
#define __libpbd_ffs_h__
namespace PBD {
int ffs(int x);
}
#endif /* __libpbd_ffs_h__ */

View File

@ -45,6 +45,7 @@ libpbd_sources = [
'enums.cc',
'epa.cc',
'error.cc',
'ffs.cc',
'file_manager.cc',
'file_utils.cc',
'fpu.cc',