本文介绍了Linux中的Lazarus自然排序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在Linux中找到了naturalstrcmp函数,我认为这是我需要的。在Ubuntu,Debian和FreeBSD中如何使用它的任何例子?



[]



我应该在外部声明中放置什么名称?在我的Debian 7.7上,来自Alliance包的/usr/share/man/man3/naturalstrcmp.3.gz。



我试过:



函数naturalstrcmp(s,t:PChar):整数;外部'联盟'名称'naturalstrcmp';



没有成功。错误消息显示找不到-lalliance。

I have found naturalstrcmp function in Linux and I think it is what I need. Any example of how to use it in Ubuntu, Debian and FreeBSD?

http://www.unix.com/man-page/debian/3/NATURALSTRCMP/[^]

What is the libname I should put in my external declaration? On my Debian 7.7 it is on /usr/share/man/man3/naturalstrcmp.3.gz from Alliance package.

I tried :

function naturalstrcmp(s, t: PChar): Integer; external 'alliance' name 'naturalstrcmp';

without success. The error message says that "cannot find -lalliance".

推荐答案


这篇关于Linux中的Lazarus自然排序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-12 17:04